Popup menu and dialog window classes don't have EVENT_OBJECT_CREATE winevents associated with their creation.
Signed-off-by: Connor McAdams cmcadams@codeweavers.com --- dlls/user32/win.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/dlls/user32/win.c b/dlls/user32/win.c index 7c2471d2746..2148c3969d8 100644 --- a/dlls/user32/win.c +++ b/dlls/user32/win.c @@ -1794,7 +1794,13 @@ HWND WIN_CreateWindowEx( CREATESTRUCTW *cs, LPCWSTR className, HINSTANCE module,
if (!USER_Driver->pCreateWindow( hwnd )) goto failed;
- NotifyWinEvent(EVENT_OBJECT_CREATE, hwnd, OBJID_WINDOW, 0); + /* + * Popup menus and dialog windows don't get an EVENT_OBJECT_CREATE + * WinEvent on their creation. + */ + if (GetClassLongW(hwnd, GCW_ATOM) != POPUPMENU_CLASS_ATOM && + GetClassLongW(hwnd, GCW_ATOM) != DIALOG_CLASS_ATOM) + NotifyWinEvent(EVENT_OBJECT_CREATE, hwnd, OBJID_WINDOW, 0);
/* send the size messages */
Enable WinEvent hooks on all message sequence, and add winevent_todo flags for WinEvents that are currently unimplemented in wine.
Signed-off-by: Connor McAdams cmcadams@codeweavers.com --- There may be a better way to signal that a WinEvent is unimplemented instead of just silently dropping them as was done before, but the current way doesn't change any behavior in that regard.
dlls/user32/tests/msg.c | 776 ++++++++++++++++++++-------------------- 1 file changed, 384 insertions(+), 392 deletions(-)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 9867e319d58..8f3505c730e 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -137,7 +137,8 @@ typedef enum { optional=0x80, hook=0x100, winevent_hook=0x200, - kbd_hook=0x400 + kbd_hook=0x400, + winevent_todo=0x800 } msg_flags_t;
struct message { @@ -173,7 +174,7 @@ static const struct message WmCreateOverlappedSeq[] = { { WM_NCCALCSIZE, sent|wparam, 0 }, { 0x0093, sent|defwinproc|optional }, { 0x0094, sent|defwinproc|optional }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CREATE, sent }, { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, 0, 0 }, { 0 } @@ -183,12 +184,12 @@ static const struct message WmCreateOverlappedSeq[] = { */ static const struct message WmSWP_ShowOverlappedSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NCPAINT, sent|wparam|optional, 1 }, { WM_GETTEXT, sent|defwinproc|optional }, { WM_ERASEBKGND, sent|optional }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NOTIFYFORMAT, sent|optional }, { WM_QUERYUISTATE, sent|optional }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, @@ -200,7 +201,7 @@ static const struct message WmSWP_ShowOverlappedSeq[] = { { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, { WM_GETTEXT, sent|optional }, { WM_NCPAINT, sent|wparam|optional, 1 }, @@ -212,7 +213,7 @@ static const struct message WmSWP_ShowOverlappedSeq[] = { { WM_NCCALCSIZE, sent|wparam|optional, 1 }, { WM_NCPAINT, sent|wparam|optional, 1 }, { WM_ERASEBKGND, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SYNCPAINT, sent|optional }, { WM_GETTITLEBARINFOEX, sent|optional }, { WM_PAINT, sent|optional }, @@ -226,7 +227,7 @@ static const struct message WmSWP_ShowOverlappedSeq[] = { */ static const struct message WmSWP_HideOverlappedSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_ACTIVATEAPP, sent|wparam|optional, 1 }, @@ -252,8 +253,8 @@ static const struct message WmSWP_ResizeSeq[] = { { WM_NCPAINT, sent|optional }, { WM_GETTEXT, sent|defwinproc|optional }, { WM_ERASEBKGND, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* XP sends a duplicate */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* XP sends a duplicate */ { 0 } };
@@ -273,7 +274,7 @@ static const struct message WmSWP_ResizePopupSeq[] = { { WM_NCPAINT, sent|optional }, { WM_GETTEXT, sent|defwinproc|optional }, { WM_ERASEBKGND, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } };
@@ -287,7 +288,7 @@ static const struct message WmSWP_MoveSeq[] = { { WM_ERASEBKGND, sent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOCLIENTSIZE }, { WM_MOVE, sent|defwinproc|wparam, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; /* Resize with SetWindowPos(SWP_NOZORDER) @@ -309,8 +310,8 @@ static const struct message WmSWP_ResizeNoZOrder[] = { { WM_NCPAINT, sent|optional }, /* Win9x doesn't send it */ { WM_GETTEXT, sent|defwinproc|optional }, /* Win9x doesn't send it */ { WM_ERASEBKGND, sent|optional }, /* Win9x doesn't send it */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } };
@@ -319,7 +320,7 @@ static const struct message WmSwitchChild[] = { /* Switch MDI child */ { WM_MDIACTIVATE, sent },/* in the MDI client */ { WM_WINDOWPOSCHANGING, sent|wparam,SWP_NOSIZE|SWP_NOMOVE },/* in the 1st MDI child */ - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_CHILDACTIVATE, sent },/* in the 1st MDI child */ /* Deactivate 2nd MDI child */ { WM_NCACTIVATE, sent|wparam|defwinproc, 0 }, /* in the 2nd MDI child */ @@ -338,31 +339,31 @@ static const struct message WmSwitchChild[] = { /* Restore 2nd MDI child */ { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_STATECHANGED },/* in the 2nd MDI child */ { WM_NCCALCSIZE, sent|wparam|defwinproc, 1 },/* in the 2nd MDI child */ - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, /* in the 2nd MDI child */ + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* in the 2nd MDI child */ { WM_WINDOWPOSCHANGED, sent|wparam|defwinproc, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOMOVE|SWP_NOCLIENTMOVE|SWP_STATECHANGED }, /* in the 2nd MDI child */ { WM_SIZE, sent|defwinproc|wparam, SIZE_RESTORED }, /* in the 2nd MDI child */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* in the 2nd MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* in the 2nd MDI child */ /* Redraw 2nd MDI child */ { WM_SETREDRAW, sent|wparam|defwinproc, 1 },/* in the 2nd MDI child */ /* Redraw MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOSIZE|SWP_NOMOVE },/* in MDI frame */ { WM_NCCALCSIZE, sent|wparam, 1 },/* in MDI frame */ { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE}, /* in MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* in MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* in the 1st MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* in MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* in the 1st MDI child */ { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, /* in the 1st MDI child */ { WM_NCACTIVATE, sent|wparam|defwinproc, 1 }, /* in the 1st MDI child */ { HCBT_SETFOCUS, hook }, { WM_KILLFOCUS, sent|defwinproc }, /* in the 2nd MDI child */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 0 },/* in the 1st MDI child */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent },/* in the MDI client */ { HCBT_SETFOCUS, hook }, { WM_KILLFOCUS, sent },/* in the MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, /* in the 1st MDI child */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc }, /* in the 1st MDI child */ { WM_MDIACTIVATE, sent|defwinproc },/* in the 1st MDI child */ { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, /* in the 1st MDI child */ @@ -374,7 +375,7 @@ static const struct message WmSwitchNotMaximizedChild[] = { /* Switch not maximized MDI child */ { WM_MDIACTIVATE, sent },/* in the MDI client */ { WM_WINDOWPOSCHANGING, sent|wparam,SWP_NOSIZE|SWP_NOMOVE },/* in the 2nd MDI child */ - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_CHILDACTIVATE, sent },/* in the 2nd MDI child */ /* Deactivate 1st MDI child */ { WM_NCACTIVATE, sent|wparam|defwinproc, 0 }, /* in the 1st MDI child */ @@ -411,7 +412,7 @@ static const struct message WmSWP_FrameChanged_clip[] = { { WM_NCPAINT, sent }, /* wparam != 1 */ { WM_ERASEBKGND, sent }, { WM_WINDOWPOSCHANGED, sent|wparam|parent, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_PAINT, sent }, { 0 } }; @@ -423,7 +424,7 @@ static const struct message WmSWP_FrameChangedDeferErase[] = { { WM_WINDOWPOSCHANGING, sent|wparam|parent, SWP_NOSIZE|SWP_NOMOVE|SWP_DEFERERASE|SWP_NOACTIVATE|SWP_FRAMECHANGED }, { WM_NCCALCSIZE, sent|wparam|parent, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam|parent, SWP_NOSIZE|SWP_NOMOVE|SWP_DEFERERASE|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_PAINT, sent|parent|optional }, { WM_NCPAINT, sent|beginpaint|parent|optional }, /* wparam != 1 */ { WM_GETTEXT, sent|beginpaint|parent|defwinproc|optional }, @@ -444,7 +445,7 @@ static const struct message WmSWP_FrameChanged_noclip[] = { { WM_GETTEXT, sent|parent|defwinproc|optional }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam|parent, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_PAINT, sent }, { WM_NCPAINT, sent|beginpaint }, /* wparam != 1 */ { WM_ERASEBKGND, sent|beginpaint|optional }, @@ -456,12 +457,12 @@ static const struct message WmShowOverlappedSeq[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_NCPAINT, sent|wparam|optional, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NCPAINT, sent|wparam|optional, 1 }, { WM_GETTEXT, sent|defwinproc|optional }, { WM_ERASEBKGND, sent|optional }, { HCBT_ACTIVATE, hook|optional }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_NCPAINT, sent|wparam|optional, 1 }, @@ -472,7 +473,7 @@ static const struct message WmShowOverlappedSeq[] = { { HCBT_SETFOCUS, hook|optional }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc|optional, 0 }, { WM_GETTEXT, sent|optional }, { WM_NCPAINT, sent|wparam|optional, 1 }, @@ -503,9 +504,9 @@ static const struct message WmShowMaxOverlappedSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_STATECHANGED }, { WM_GETMINMAXINFO, sent|defwinproc }, { WM_NCCALCSIZE, sent|wparam, TRUE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_ACTIVATEAPP, sent|wparam|optional, 1 }, @@ -515,7 +516,7 @@ static const struct message WmShowMaxOverlappedSeq[] = { { HCBT_SETFOCUS, hook|optional }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc|optional, 0 }, { WM_GETTEXT, sent|optional }, { WM_NCPAINT, sent|wparam|optional, 1 }, @@ -529,8 +530,8 @@ static const struct message WmShowMaxOverlappedSeq[] = { { WM_NCCALCSIZE, sent|optional }, { WM_NCPAINT, sent|optional }, { WM_ERASEBKGND, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SYNCPAINT, sent|optional }, { WM_GETTITLEBARINFOEX, sent|optional }, { WM_PAINT, sent|optional }, @@ -613,7 +614,7 @@ static const struct message WmShowRestoreMinOverlappedSeq[] = { static const struct message WmShowMinOverlappedSeq[] = { { HCBT_MINMAX, hook|lparam, 0, SW_MINIMIZE }, { HCBT_SETFOCUS, hook|optional }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_KILLFOCUS, sent|optional }, { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_NOTIFY, sent|wparam|optional|defwinproc, 1 }, @@ -621,16 +622,16 @@ static const struct message WmShowMinOverlappedSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOCOPYBITS|SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_STATECHANGED }, { WM_GETMINMAXINFO, sent|defwinproc }, { WM_NCCALCSIZE, sent|wparam, TRUE }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NCPAINT, sent|optional }, { WM_GETTEXT, sent|defwinproc|optional }, { WM_WINDOWPOSCHANGED, sent }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam|lparam, SIZE_MINIMIZED, 0 }, { WM_NCCALCSIZE, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NCACTIVATE, sent|wparam|optional, 0 }, { WM_GETTEXT, sent|defwinproc|optional }, { WM_ACTIVATE, sent|optional }, @@ -672,7 +673,7 @@ static const struct message WmShowMinOverlappedSeq[] = { static const struct message WmHideOverlappedSeq[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_SIZE, sent|optional }, /* XP doesn't send it */ { WM_MOVE, sent|optional }, /* XP doesn't send it */ @@ -690,7 +691,7 @@ static const struct message WmDestroyOverlappedSeq[] = { { HCBT_DESTROYWND, hook }, { 0x0090, sent|optional }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0x0090, sent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_NCACTIVATE, sent|optional|wparam, 0 }, @@ -699,7 +700,7 @@ static const struct message WmDestroyOverlappedSeq[] = { { WM_KILLFOCUS, sent|optional|wparam, 0 }, { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_NOTIFY, sent|wparam|optional|defwinproc, 1 }, - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent }, { WM_NCDESTROY, sent }, { 0 } @@ -720,12 +721,12 @@ static const struct message WmCreateMaxPopupSeq[] = { { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOREDRAW|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_NCPAINT, sent|wparam|optional, 1 }, @@ -737,7 +738,7 @@ static const struct message WmCreateMaxPopupSeq[] = { { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, { WM_GETTEXT, sent|optional }, { WM_SYNCPAINT, sent|wparam|optional, 4 }, @@ -764,7 +765,7 @@ static const struct message WmCreateInvisibleMaxPopupSeq[] = { { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOREDRAW|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; /* ShowWindow(SW_SHOWMAXIMIZED) for a resized not visible popup window */ @@ -773,9 +774,9 @@ static const struct message WmShowMaxPopupResizedSeq[] = { { WM_GETMINMAXINFO, sent }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED, 0, SWP_STATECHANGED /* w1064v1809 */ }, { WM_NCCALCSIZE, sent|wparam, TRUE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_NCPAINT, sent|wparam|optional, 1 }, @@ -787,7 +788,7 @@ static const struct message WmShowMaxPopupResizedSeq[] = { { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, { WM_GETTEXT, sent|optional }, { WM_NCPAINT, sent|wparam|optional, 1 }, @@ -796,7 +797,7 @@ static const struct message WmShowMaxPopupResizedSeq[] = { /* WinNT4.0 sends WM_MOVE */ { WM_MOVE, sent|defwinproc|optional }, { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; /* ShowWindow(SW_SHOWMAXIMIZED) for a not visible popup window */ @@ -805,9 +806,9 @@ static const struct message WmShowMaxPopupSeq[] = { { WM_GETMINMAXINFO, sent }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED, 0, SWP_STATECHANGED /* w1064v1809 */ }, { WM_NCCALCSIZE, sent|wparam, TRUE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_NCPAINT, sent|wparam|optional, 1 }, @@ -819,7 +820,7 @@ static const struct message WmShowMaxPopupSeq[] = { { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, { WM_GETTEXT, sent|optional }, { WM_SYNCPAINT, sent|wparam|optional, 4 }, @@ -828,7 +829,7 @@ static const struct message WmShowMaxPopupSeq[] = { { WM_NCPAINT, sent|wparam|defwinproc|optional, 1 }, { WM_ERASEBKGND, sent|defwinproc|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE|SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOMOVE|SWP_NOSIZE, 0, SWP_STATECHANGED /* w1064v1809 */ }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SIZE, sent|defwinproc|optional }, { 0 } }; @@ -843,9 +844,9 @@ static const struct message WmCreatePopupSeq[] = { { WM_MOVE, sent }, { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_NCPAINT, sent|wparam|optional, 1 }, @@ -857,7 +858,7 @@ static const struct message WmCreatePopupSeq[] = { { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, { WM_GETTEXT, sent|optional }, { WM_SYNCPAINT, sent|wparam|optional, 4 }, @@ -880,7 +881,7 @@ static const struct message WmShowVisMaxPopupSeq[] = { { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; /* ShowWindow(hwnd, SW_RESTORE) to a minimized window */ @@ -1061,7 +1062,7 @@ static const struct message WmShowVisiblePopupSeq_2[] = { static const struct message WmShowVisiblePopupSeq_3[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_NCACTIVATE, sent }, @@ -1071,7 +1072,7 @@ static const struct message WmShowVisiblePopupSeq_3[] = { { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc }, { WM_GETTEXT, sent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE, 0, SWP_SHOWWINDOW }, @@ -1104,7 +1105,7 @@ static const struct message WmShowPopupExtremeLocationSeq[] = { { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { HCBT_SETFOCUS, hook }, { WM_SETFOCUS, sent|defwinproc }, { WM_NCPAINT, sent|wparam, 1 }, @@ -1136,7 +1137,7 @@ static const struct message WmShowPopupFirstDrawSeq_1[] = { { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { HCBT_SETFOCUS, hook }, { WM_SETFOCUS, sent|defwinproc }, { WM_NCPAINT, sent|wparam, 1 }, @@ -1174,7 +1175,7 @@ static const struct message WmShowPopupFirstDrawSeq_2[] = { { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { HCBT_SETFOCUS, hook }, { WM_SETFOCUS, sent|defwinproc }, { WM_NCPAINT, sent|wparam, 1 }, @@ -1206,7 +1207,7 @@ static const struct message WmFirstDrawSetWindowPosSeq1[] = { { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { HCBT_SETFOCUS, hook }, { WM_SETFOCUS, sent|defwinproc }, { WM_NCPAINT, sent|wparam, 1 }, @@ -1233,7 +1234,7 @@ static const struct message WmFirstDrawSetWindowPosSeq2[] = { { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { HCBT_SETFOCUS, hook }, { WM_SETFOCUS, sent|defwinproc }, { WM_WINDOWPOSCHANGED, sent }, @@ -1276,7 +1277,7 @@ static const struct message WmFirstDrawSetWindowPosSeq4[] = { { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { HCBT_SETFOCUS, hook }, { WM_SETFOCUS, sent|defwinproc }, { WM_NCPAINT, sent|wparam, 1 }, @@ -1302,7 +1303,7 @@ static const struct message WmFirstDrawSetWindowPosSeq5[] = { { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { HCBT_SETFOCUS, hook }, { WM_SETFOCUS, sent|defwinproc }, { WM_WINDOWPOSCHANGED, sent }, @@ -1347,7 +1348,7 @@ static const struct message WmCreateMaximizedChildSeq[] = { { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTMOVE|SWP_STATECHANGED }, { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_PARENTNOTIFY, sent|parent|wparam, WM_CREATE }, { 0 } }; @@ -1357,7 +1358,7 @@ static const struct message WmCreateVisibleChildSeq[] = { { WM_NCCREATE, sent }, /* child is inserted into parent's child list after WM_NCCREATE returns */ { WM_NCCALCSIZE, sent|wparam, 0 }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CREATE, sent }, { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, 0, 0 }, { WM_SIZE, sent|wparam, SIZE_RESTORED }, @@ -1365,18 +1366,18 @@ static const struct message WmCreateVisibleChildSeq[] = { { WM_PARENTNOTIFY, sent|parent|wparam, WM_CREATE }, { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_NCCALCSIZE, sent|wparam|optional, 1 }, /* WinXP */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; /* ShowWindow(SW_SHOW) for a not visible child window */ static const struct message WmShowChildSeq[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } @@ -1385,7 +1386,7 @@ static const struct message WmShowChildSeq[] = { static const struct message WmHideChildSeq[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } @@ -1394,7 +1395,7 @@ static const struct message WmHideChildSeq[] = { static const struct message WmHideChildSeq2[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } @@ -1404,7 +1405,7 @@ static const struct message WmHideChildSeq2[] = { */ static const struct message WmShowChildSeq_2[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CHILDACTIVATE, sent }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } @@ -1414,7 +1415,7 @@ static const struct message WmShowChildSeq_2[] = { */ static const struct message WmShowChildSeq_3[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } }; @@ -1431,13 +1432,13 @@ static const struct message WmShowChildInvisibleParentSeq_1[] = { { HCBT_MINMAX, hook|lparam, 0, SW_MINIMIZE }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED, 0, SWP_NOACTIVATE }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CHILDACTIVATE, sent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOREDRAW|SWP_NOCOPYBITS|SWP_STATECHANGED, 0, SWP_NOACTIVATE }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam|lparam, SIZE_MINIMIZED, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* FIXME: Wine creates an icon/title window while Windows doesn't */ { WM_PARENTNOTIFY, sent|parent|wparam|optional, WM_CREATE }, { WM_GETTEXT, sent|optional }, @@ -1454,11 +1455,11 @@ static const struct message WmShowChildInvisibleParentSeq_2[] = { { WM_GETMINMAXINFO, sent }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_STATECHANGED }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CHILDACTIVATE, sent }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTMOVE|SWP_STATECHANGED }, { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; /* repeated ShowWindow(SW_MAXIMIZE) for child with invisible parent */ @@ -1471,13 +1472,13 @@ static const struct message WmShowChildInvisibleParentSeq_3[] = { { HCBT_MINMAX, hook|lparam, 0, SW_SHOWMINIMIZED }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CHILDACTIVATE, sent }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOREDRAW|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam|lparam, SIZE_MINIMIZED, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* FIXME: Wine creates an icon/title window while Windows doesn't */ { WM_PARENTNOTIFY, sent|parent|wparam|optional, WM_CREATE }, { WM_GETTEXT, sent|optional }, @@ -1493,12 +1494,12 @@ static const struct message WmShowChildInvisibleParentSeq_4[] = { { HCBT_MINMAX, hook|lparam, 0, SW_SHOWMINNOACTIVE }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOREDRAW|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam|lparam, SIZE_MINIMIZED, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* FIXME: Wine creates an icon/title window while Windows doesn't */ { WM_PARENTNOTIFY, sent|parent|wparam|optional, WM_CREATE }, { WM_GETTEXT, sent|optional }, @@ -1522,14 +1523,14 @@ static const struct message WmHideChildInvisibleParentSeq[] = { /* SetWindowPos(SWP_SHOWWINDOW) for child with invisible parent */ static const struct message WmShowChildInvisibleParentSeq_6[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE|SWP_NOREDRAW|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } }; /* SetWindowPos(SWP_HIDEWINDOW) for child with invisible parent */ static const struct message WmHideChildInvisibleParentSeq_2[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } }; @@ -1540,16 +1541,16 @@ static const struct message WmDestroyChildSeq[] = { { WM_PARENTNOTIFY, sent|parent|wparam, WM_DESTROY }, { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { HCBT_SETFOCUS, hook }, /* set focus to a parent */ { WM_KILLFOCUS, sent }, { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|parent|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|parent }, - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent }, { WM_DESTROY, sent|optional }, /* some other (IME?) window */ { WM_NCDESTROY, sent|optional }, /* some other (IME?) window */ @@ -1569,7 +1570,7 @@ static const struct message WmDestroyInvisibleChildSeq[] = { { 0x0090, sent|optional }, { WM_PARENTNOTIFY, sent|parent|wparam, WM_DESTROY }, { WM_SHOWWINDOW, sent|wparam, 0 }, - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent }, { WM_NCDESTROY, sent }, { 0 } @@ -1583,7 +1584,7 @@ static const struct message WmResizingChildWithMoveWindowSeq[] = { { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam, SIZE_RESTORED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; /* Creation of a custom dialog (32) */ @@ -1592,7 +1593,7 @@ static const struct message WmCreateCustomDialogSeq[] = { { WM_GETMINMAXINFO, sent }, { WM_NCCREATE, sent }, { WM_NCCALCSIZE, sent|wparam, 0 }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CREATE, sent }, { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, 0, 0 }, { WM_NOTIFYFORMAT, sent|optional }, @@ -1603,9 +1604,9 @@ static const struct message WmCreateCustomDialogSeq[] = { { WM_WINDOWPOSCHANGED, sent|optional }, { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 },
{ WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, @@ -1616,14 +1617,14 @@ static const struct message WmCreateCustomDialogSeq[] = { { WM_GETTEXT, sent|optional|defwinproc }, { WM_GETTEXT, sent|optional|defwinproc }, { WM_GETTEXT, sent|optional|defwinproc }, - { EVENT_OBJECT_DEFACTIONCHANGE, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_DEFACTIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, OBJID_CLIENT, 0 }, { WM_ACTIVATE, sent|wparam, 1 }, { WM_GETTEXT, sent|optional }, { WM_KILLFOCUS, sent|parent }, { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, { WM_GETDLGCODE, sent|defwinproc|wparam, 0 }, { WM_NCPAINT, sent|wparam, 1 }, @@ -1640,7 +1641,7 @@ static const struct message WmCreateCustomDialogSeq[] = { { WM_GETTEXT, sent|optional|defwinproc }, { WM_ERASEBKGND, sent|optional }, { WM_CTLCOLORDLG, sent|optional|defwinproc }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SIZE, sent|wparam, SIZE_RESTORED }, { WM_MOVE, sent }, { 0 } @@ -1648,7 +1649,7 @@ static const struct message WmCreateCustomDialogSeq[] = { /* Calling EndDialog for a custom dialog (32) */ static const struct message WmEndCustomDialogSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_GETTEXT, sent|optional }, { HCBT_ACTIVATE, hook }, @@ -1656,7 +1657,7 @@ static const struct message WmEndCustomDialogSeq[] = { { WM_GETTEXT, sent|optional|defwinproc }, { WM_GETTEXT, sent|optional|defwinproc }, { WM_ACTIVATE, sent|wparam, 0 }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_NOACTIVATE|SWP_NOREDRAW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_GETTEXT, sent|optional|defwinproc }, @@ -1666,7 +1667,7 @@ static const struct message WmEndCustomDialogSeq[] = { { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|parent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|parent|defwinproc }, { 0 } }; @@ -1674,9 +1675,9 @@ static const struct message WmEndCustomDialogSeq[] = { static const struct message WmShowCustomDialogSeq[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 },
{ WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 },
@@ -1690,7 +1691,7 @@ static const struct message WmShowCustomDialogSeq[] = { { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, { WM_GETDLGCODE, sent|defwinproc|wparam, 0 }, { WM_NCPAINT, sent|wparam, 1 }, @@ -1703,28 +1704,28 @@ static const struct message WmShowCustomDialogSeq[] = { static const struct message WmModalDialogSeq[] = { { WM_CANCELMODE, sent|parent }, { HCBT_SETFOCUS, hook }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_KILLFOCUS, sent|parent }, { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ENABLE, sent|parent|wparam, 0 }, { HCBT_CREATEWND, hook }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SETFONT, sent }, { WM_INITDIALOG, sent }, { WM_CHANGEUISTATE, sent|optional }, { WM_UPDATEUISTATE, sent|optional }, { WM_SHOWWINDOW, sent }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOSIZE|SWP_NOMOVE }, { WM_NCACTIVATE, sent }, { WM_GETTEXT, sent|optional }, { WM_ACTIVATE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NCPAINT, sent|optional }, { WM_GETTEXT, sent|optional }, { WM_ERASEBKGND, sent|optional }, @@ -1736,7 +1737,7 @@ static const struct message WmModalDialogSeq[] = { { WM_GETTEXT, sent|optional }, { WM_ERASEBKGND, sent|optional }, { WM_CTLCOLORDLG, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_PAINT, sent|optional }, { WM_CTLCOLORBTN, sent|optional }, { WM_GETTITLEBARINFOEX, sent|optional }, @@ -1761,27 +1762,27 @@ static const struct message WmModalDialogSeq[] = { { WM_ENTERIDLE, sent|parent|optional }, { WM_ENTERIDLE, sent|parent|optional }, { WM_TIMER, sent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ENABLE, sent|parent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_GETTEXT, sent|optional }, { HCBT_ACTIVATE, hook }, { WM_NCACTIVATE, sent|wparam, 0 }, { WM_GETTEXT, sent|optional }, { WM_ACTIVATE, sent|wparam, 0 }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|optional }, { WM_WINDOWPOSCHANGED, sent|optional }, { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|parent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|parent|defwinproc }, - { EVENT_SYSTEM_DIALOGEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_DIALOGEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_DESTROYWND, hook }, { 0x0090, sent|optional }, - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent }, { WM_NCDESTROY, sent }, { 0 } @@ -1789,26 +1790,26 @@ static const struct message WmModalDialogSeq[] = { static const struct message WmModalDialogSeq_2[] = { { WM_CANCELMODE, sent }, { HCBT_SETFOCUS, hook }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_KILLFOCUS, sent }, { WM_IME_SETCONTEXT, sent|parent|wparam|optional, 0 }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ENABLE, sent|wparam, 0 }, { HCBT_CREATEWND, hook }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SETFONT, sent }, { WM_INITDIALOG, sent }, { WM_CHANGEUISTATE, sent|optional }, { WM_UPDATEUISTATE, sent|optional }, { WM_ENABLE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CHANGEUISTATE, sent|optional }, { WM_UPDATEUISTATE, sent|optional }, { HCBT_DESTROYWND, hook }, { 0x0090, sent|optional }, - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent }, { WM_NCDESTROY, sent }, { 0 } @@ -1817,13 +1818,13 @@ static const struct message WmModalDialogSeq_2[] = { static const struct message WmSetMenuNonVisibleSizeChangeSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOREDRAW }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam, SIZE_RESTORED }, { WM_NCCALCSIZE,sent|wparam|optional, 1 }, /* XP */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* XP sends a duplicate */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* XP sends a duplicate */ { WM_GETTEXT, sent|optional }, { WM_NCCALCSIZE, sent|wparam|optional, 1 }, { 0 } @@ -1833,7 +1834,7 @@ static const struct message WmSetMenuNonVisibleNoSizeChangeSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; /* SetMenu for Visible windows with size change */ @@ -1841,7 +1842,7 @@ static const struct message WmSetMenuVisibleSizeChangeSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { 0x0093, sent|defwinproc|optional }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NCPAINT, sent|optional }, /* wparam != 1 */ { 0x0093, sent|defwinproc|optional }, { 0x0093, sent|defwinproc|optional }, @@ -1862,8 +1863,8 @@ static const struct message WmSetMenuVisibleSizeChangeSeq[] = { { 0x0091, sent|defwinproc|optional }, { 0x0092, sent|defwinproc|optional }, { WM_ERASEBKGND, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* XP sends a duplicate */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* XP sends a duplicate */ { 0 } }; /* SetMenu for Visible windows with no size change */ @@ -1875,7 +1876,7 @@ static const struct message WmSetMenuVisibleNoSizeChangeSeq[] = { { WM_ERASEBKGND, sent|optional }, { WM_ACTIVATE, sent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; /* DrawMenuBar for a visible window */ @@ -1893,7 +1894,7 @@ static const struct message WmDrawMenuBarSeq[] = { WM_ERASEBKGND, sent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0x0093, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } };
@@ -1912,7 +1913,7 @@ static const struct message WmSetRedrawTrueSeq[] = static const struct message WmEnableWindowSeq_1[] = { { WM_CANCELMODE, sent|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_SETFOCUS, hook|optional }, { WM_KILLFOCUS, sent|optional }, { WM_ENABLE, sent|wparam|lparam, FALSE, 0 }, @@ -1922,20 +1923,20 @@ static const struct message WmEnableWindowSeq_1[] = static const struct message WmEnableWindowSeq_2[] = { { WM_CANCELMODE, sent|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } };
static const struct message WmEnableWindowSeq_3[] = { - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ENABLE, sent|wparam|lparam, TRUE, 0 }, { 0 } };
static const struct message WmEnableWindowSeq_4[] = { - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } };
@@ -1960,12 +1961,12 @@ static const struct message WmSetScrollRangeSeq[] = /* SetScrollRange for a window without a non-client area */ static const struct message WmSetScrollRangeHSeq_empty[] = { - { EVENT_OBJECT_VALUECHANGE, winevent_hook|wparam|lparam, OBJID_HSCROLL, 0 }, + { EVENT_OBJECT_VALUECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_HSCROLL, 0 }, { 0 } }; static const struct message WmSetScrollRangeVSeq_empty[] = { - { EVENT_OBJECT_VALUECHANGE, winevent_hook|wparam|lparam, OBJID_VSCROLL, 0 }, + { EVENT_OBJECT_VALUECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_VSCROLL, 0 }, { 0 } }; static const struct message WmSetScrollRangeHVSeq[] = @@ -1975,7 +1976,7 @@ static const struct message WmSetScrollRangeHVSeq[] = { WM_GETTEXT, sent|defwinproc|optional }, { WM_ERASEBKGND, sent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOSIZE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { EVENT_OBJECT_VALUECHANGE, winevent_hook|lparam|optional, 0/*OBJID_HSCROLL or OBJID_VSCROLL*/, 0 }, { 0 } }; @@ -1984,7 +1985,7 @@ static const struct message WmSetScrollRangeHV_NC_Seq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOSIZE }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NCPAINT, sent|optional }, { WM_STYLECHANGING, sent|defwinproc|optional }, { WM_STYLECHANGED, sent|defwinproc|optional }, @@ -2000,7 +2001,7 @@ static const struct message WmSetScrollRangeHV_NC_Seq[] = { WM_CTLCOLORDLG, sent|defwinproc|optional }, /* sent to a parent of the dialog */ { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOSIZE|SWP_NOCLIENTMOVE, 0, SWP_NOCLIENTSIZE }, { WM_SIZE, sent|defwinproc|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { EVENT_OBJECT_VALUECHANGE, winevent_hook|lparam|optional, 0/*OBJID_HSCROLL or OBJID_VSCROLL*/, 0 }, { WM_GETTEXT, sent|optional }, { WM_GETTEXT, sent|optional }, @@ -2026,7 +2027,7 @@ static const struct message WmSHOWNAChildVisParVis[] = { static const struct message WmSHOWNAChildInvisParVis[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOACTIVATE|SWP_NOCLIENTMOVE }, { 0 } @@ -2049,7 +2050,7 @@ static const struct message WmSHOWNATopInvisible[] = { { WM_WINDOWPOSCHANGED, sent|optional }, { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NCPAINT, sent|wparam|optional, 1 }, { WM_GETTEXT, sent|defwinproc|optional }, { WM_ERASEBKGND, sent|optional }, @@ -2057,7 +2058,7 @@ static const struct message WmSHOWNATopInvisible[] = { { WM_NCCALCSIZE, sent|wparam|optional, 1 }, { WM_NCPAINT, sent|wparam|optional, 1 }, { WM_ERASEBKGND, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SIZE, sent|wparam, SIZE_RESTORED }, { WM_MOVE, sent }, { 0 } @@ -2691,7 +2692,7 @@ static void ok_sequence_(const struct message *expected_list, const char *contex actual++; } /* silently drop hook messages if there is no support for them */ - else if ((expected->flags & optional) || + else if ((expected->flags & (optional | winevent_todo)) || ((expected->flags & hook) && !hCBT_hook) || ((expected->flags & winevent_hook) && !hEvent_hook) || ((expected->flags & kbd_hook) && !hKBD_hook)) @@ -2718,7 +2719,7 @@ static void ok_sequence_(const struct message *expected_list, const char *contex }
/* skip all optional trailing messages */ - while (expected->message && ((expected->flags & optional) || + while (expected->message && ((expected->flags & (optional | winevent_todo)) || ((expected->flags & hook) && !hCBT_hook) || ((expected->flags & winevent_hook) && !hEvent_hook))) expected++; @@ -2764,7 +2765,7 @@ static const struct message WmCreateMDIframeSeq[] = { { WM_GETMINMAXINFO, sent }, { WM_NCCREATE, sent }, { WM_NCCALCSIZE, sent|wparam, 0 }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CREATE, sent }, { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, 0, 0 }, { WM_NOTIFYFORMAT, sent|optional }, @@ -2775,9 +2776,9 @@ static const struct message WmCreateMDIframeSeq[] = { { WM_WINDOWPOSCHANGED, sent|optional }, { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_ACTIVATE, hook }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, /* XP */ { WM_ACTIVATEAPP, sent|wparam|optional, 1 }, /* Win9x doesn't send it */ @@ -2788,12 +2789,12 @@ static const struct message WmCreateMDIframeSeq[] = { { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, /* Win9x adds SWP_NOZORDER below */ { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_NCCALCSIZE, sent|wparam|optional, 1 }, /* XP */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SIZE, sent|wparam, SIZE_RESTORED }, { WM_MOVE, sent }, { 0 } @@ -2803,14 +2804,14 @@ static const struct message WmDestroyMDIframeSeq[] = { { HCBT_DESTROYWND, hook }, { 0x0090, sent|optional }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_NCACTIVATE, sent|wparam|optional, 0 }, /* Win9x */ { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_NCACTIVATE, sent|wparam|optional, 0 }, /* XP */ { WM_ACTIVATE, sent|wparam|optional, 0 }, /* Win9x */ { WM_ACTIVATEAPP, sent|wparam|optional, 0 }, /* Win9x */ - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent }, { WM_NCDESTROY, sent }, { 0 } @@ -2820,16 +2821,16 @@ static const struct message WmCreateMDIclientSeq[] = { { HCBT_CREATEWND, hook }, { WM_NCCREATE, sent }, { WM_NCCALCSIZE, sent|wparam, 0 }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|optional, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, { WM_CREATE, sent }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|optional, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, 0, 0 }, { WM_SIZE, sent|wparam, SIZE_RESTORED }, { WM_MOVE, sent }, { WM_PARENTNOTIFY, sent|wparam, WM_CREATE }, /* in MDI frame */ { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } }; @@ -2837,7 +2838,7 @@ static const struct message WmCreateMDIclientSeq[] = { static const struct message WmShowMDIclientSeq[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } }; @@ -2845,8 +2846,8 @@ static const struct message WmShowMDIclientSeq[] = { static const struct message WmHideMDIclientSeq[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|optional, 0, 0 }, /* win2000 */ - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* XP */ + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* win2000 */ + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* XP */ { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } }; @@ -2857,9 +2858,9 @@ static const struct message WmDestroyMDIclientSeq[] = { { WM_PARENTNOTIFY, sent|wparam, WM_DESTROY }, /* in MDI frame */ { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent }, { WM_NCDESTROY, sent }, { 0 } @@ -2881,7 +2882,7 @@ static const struct message WmCreateMDIchildVisibleSeq[] = { { WM_PARENTNOTIFY, sent /*|wparam, WM_CREATE*/ }, /* in MDI client */ { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_MDIREFRESHMENU, sent/*|wparam|lparam, 0, 0*/ }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, @@ -2894,13 +2895,13 @@ static const struct message WmCreateMDIchildVisibleSeq[] = { { HCBT_SETFOCUS, hook }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ { WM_IME_NOTIFY, sent|wparam|optional, 2 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */ { HCBT_SETFOCUS, hook }, { WM_KILLFOCUS, sent }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc }, { WM_MDIACTIVATE, sent|defwinproc }, { 0 } @@ -2933,7 +2934,7 @@ static const struct message WmCreateMDIchildInvisibleParentSeq[] = { { WM_GETMINMAXINFO, sent }, { WM_NCCREATE, sent }, { WM_NCCALCSIZE, sent|wparam, 0 }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|optional, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, { WM_CREATE, sent }, { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, 0, 0 }, { WM_SIZE, sent|wparam, SIZE_RESTORED }, @@ -2951,13 +2952,13 @@ static const struct message WmCreateMDIchildInvisibleParentSeq[] = { { HCBT_SETFOCUS, hook }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ { WM_IME_NOTIFY, sent|wparam|optional, 2 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */ { HCBT_SETFOCUS, hook }, { WM_KILLFOCUS, sent }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc }, { WM_MDIACTIVATE, sent|defwinproc }, { 0 } @@ -2974,7 +2975,7 @@ static const struct message WmDestroyMDIchildVisibleSeq[] = { { WM_PARENTNOTIFY, sent /*|wparam, WM_DESTROY*/ }, /* in MDI client */ { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE },
@@ -2986,30 +2987,30 @@ static const struct message WmDestroyMDIchildVisibleSeq[] = { { WM_KILLFOCUS, sent }, { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */
{ HCBT_SETFOCUS, hook }, /* MDI client sets focus back to MDI child */ { WM_KILLFOCUS, sent }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */
- { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 },
{ HCBT_SETFOCUS, hook }, /* set focus to MDI client */ { WM_KILLFOCUS, sent }, { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */
{ HCBT_SETFOCUS, hook }, /* MDI client sets focus back to MDI child */ { WM_KILLFOCUS, sent }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */
{ WM_DESTROY, sent }, @@ -3018,14 +3019,14 @@ static const struct message WmDestroyMDIchildVisibleSeq[] = { { WM_KILLFOCUS, sent }, { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */
{ HCBT_SETFOCUS, hook }, /* MDI client sets focus back to MDI child */ { WM_KILLFOCUS, sent }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */
{ WM_NCDESTROY, sent }, @@ -3058,7 +3059,7 @@ static const struct message WmDestroyMDIchildInvisibleSeq[] = { */ { 0x0090, sent|optional }, { WM_PARENTNOTIFY, sent /*|wparam, WM_DESTROY*/ }, /* in MDI client */ - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent }, { WM_NCDESTROY, sent }, /* FIXME: Wine destroys an icon/title window while Windows doesn't */ @@ -3084,8 +3085,8 @@ static const struct message WmCreateMDIchildVisibleMaxSeq1[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ /* Win2k sends wparam set to * MAKEWPARAM(WM_CREATE, MDI_FIRST_CHILD_ID + nTotalCreated), * while Win9x doesn't bother to set child window id according to @@ -3094,7 +3095,7 @@ static const struct message WmCreateMDIchildVisibleMaxSeq1[] = { { WM_PARENTNOTIFY, sent /*|wparam, WM_CREATE*/ }, /* in MDI client */ { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_MDIREFRESHMENU, sent/*|wparam|lparam, 0, 0*/ }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, @@ -3107,20 +3108,20 @@ static const struct message WmCreateMDIchildVisibleMaxSeq1[] = { { HCBT_SETFOCUS, hook|optional }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ { WM_IME_NOTIFY, sent|wparam|optional, 2 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|optional }, /* in MDI client */ { HCBT_SETFOCUS, hook|optional }, { WM_KILLFOCUS, sent|optional }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc|optional }, { WM_MDIACTIVATE, sent|defwinproc|optional }, /* in MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ { 0 } }; /* CreateWindow for the 2nd MDI child window, initially visible and maximized */ @@ -3137,8 +3138,8 @@ static const struct message WmCreateMDIchildVisibleMaxSeq2[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ { WM_SETREDRAW, sent|wparam, 1 }, /* in the 1st MDI child */ /* create the 2nd MDI child */ { HCBT_CREATEWND, hook }, @@ -3152,15 +3153,15 @@ static const struct message WmCreateMDIchildVisibleMaxSeq2[] = { { WM_GETMINMAXINFO, sent }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_STATECHANGED }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTMOVE|SWP_STATECHANGED }, { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED }, /* in MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ /* Win2k sends wparam set to * MAKEWPARAM(WM_CREATE, MDI_FIRST_CHILD_ID + nTotalCreated), * while Win9x doesn't bother to set child window id according to @@ -3169,7 +3170,7 @@ static const struct message WmCreateMDIchildVisibleMaxSeq2[] = { { WM_PARENTNOTIFY, sent /*|wparam, WM_CREATE*/ }, /* in MDI client */ { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_MDIREFRESHMENU, sent/*|wparam|lparam, 0, 0*/ }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, @@ -3187,13 +3188,13 @@ static const struct message WmCreateMDIchildVisibleMaxSeq2[] = { { WM_KILLFOCUS, sent|defwinproc|optional }, /* in the 1st MDI child */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 0 }, /* in the 1st MDI child */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */ { HCBT_SETFOCUS, hook }, { WM_KILLFOCUS, sent }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc },
{ WM_MDIACTIVATE, sent|defwinproc }, @@ -3201,7 +3202,7 @@ static const struct message WmCreateMDIchildVisibleMaxSeq2[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ { 0 } }; /* WM_MDICREATE MDI child window, initially visible and maximized */ @@ -3225,8 +3226,8 @@ static const struct message WmCreateMDIchildVisibleMaxSeq3[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */
/* Win2k sends wparam set to * MAKEWPARAM(WM_CREATE, MDI_FIRST_CHILD_ID + nTotalCreated), @@ -3237,7 +3238,7 @@ static const struct message WmCreateMDIchildVisibleMaxSeq3[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE },
- { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 },
{ WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_MDIREFRESHMENU, sent/*|wparam|lparam, 0, 0*/ }, @@ -3253,13 +3254,13 @@ static const struct message WmCreateMDIchildVisibleMaxSeq3[] = { { HCBT_SETFOCUS, hook }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ { WM_IME_NOTIFY, sent|wparam|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo|optional, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|optional }, /* in MDI client */ { HCBT_SETFOCUS, hook|optional }, { WM_KILLFOCUS, sent }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc },
{ WM_MDIACTIVATE, sent|defwinproc }, @@ -3268,7 +3269,7 @@ static const struct message WmCreateMDIchildVisibleMaxSeq3[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 },
/* in MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, @@ -3294,14 +3295,14 @@ static const struct message WmCreateMDIchildVisibleMaxSeq3[] = { { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED },
{ 0x0093, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI client */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI client */ { WM_NCCALCSIZE, sent|wparam|optional, 1 }, /* XP sends it to MDI frame */ { 0x0093, sent|defwinproc|optional }, { 0x0093, sent|defwinproc|optional }, { 0x0093, sent|defwinproc|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* XP sends a duplicate */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* XP sends a duplicate */
{ 0 } }; @@ -3311,7 +3312,7 @@ static const struct message WmCreateMDIchildInvisibleMaxSeq4[] = { { WM_GETMINMAXINFO, sent }, { WM_NCCREATE, sent }, { WM_NCCALCSIZE, sent|wparam, 0 }, - { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CREATE, sent }, { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, 0, 0 }, { WM_SIZE, sent|wparam, SIZE_RESTORED }, @@ -3331,10 +3332,10 @@ static const struct message WmCreateMDIchildInvisibleMaxSeq4[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ { WM_NCCALCSIZE, sent|wparam|optional, 1 }, /* MDI child */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ /* Win2k sends wparam set to * MAKEWPARAM(WM_CREATE, MDI_FIRST_CHILD_ID + nTotalCreated), * while Win9x doesn't bother to set child window id according to @@ -3354,7 +3355,7 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq2[] = { { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_NOSIZE|SWP_NOMOVE }, /* in the 1st MDI child */ { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, /* in the 2nd MDI child */
- { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 },
{ WM_CHILDACTIVATE, sent|defwinproc|wparam|lparam, 0, 0 }, /* in the 1st MDI child */ { WM_NCACTIVATE, sent|wparam|defwinproc, 0 }, /* in the 1st MDI child */ @@ -3375,20 +3376,20 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq2[] = { { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_SHOWWINDOW|SWP_STATECHANGED }, { WM_NCCALCSIZE, sent|defwinproc|wparam, 1 },
- { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 },
{ WM_WINDOWPOSCHANGED, sent|wparam|defwinproc, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_SHOWWINDOW|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTMOVE|SWP_STATECHANGED }, { WM_SIZE, sent|defwinproc|wparam, SIZE_RESTORED },
- { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */
{ WM_SETREDRAW, sent|defwinproc|wparam, 1 }, /* in MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */
/* bring the 1st MDI child to top */ { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, @@ -3397,13 +3398,13 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq2[] = { { WM_KILLFOCUS, sent|defwinproc }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */ { HCBT_SETFOCUS, hook }, { WM_KILLFOCUS, sent }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc }, { WM_MDIACTIVATE, sent|defwinproc }, { WM_WINDOWPOSCHANGED, sent|wparam|defwinproc, SWP_NOSIZE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, @@ -3411,7 +3412,7 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq2[] = { /* apparently ShowWindow(SW_SHOW) on an MDI client */ { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_MDIREFRESHMENU, sent },
@@ -3425,11 +3426,11 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq2[] = { { WM_PARENTNOTIFY, sent /*|wparam, WM_DESTROY*/ }, /* in MDI client */ { WM_SHOWWINDOW, sent|defwinproc|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam|defwinproc, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE },
- { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent|defwinproc }, { WM_NCDESTROY, sent|defwinproc }, { 0 } @@ -3439,7 +3440,7 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = { { WM_MDIDESTROY, sent }, /* in MDI client */ { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE },
@@ -3447,20 +3448,20 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = { { WM_KILLFOCUS, sent }, { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */ { HCBT_SETFOCUS, hook }, { WM_KILLFOCUS, sent }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent },
/* in MDI child */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */
/* in MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, @@ -3487,7 +3488,7 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = { { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam|defwinproc, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam|defwinproc, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */
/* in MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, @@ -3510,8 +3511,8 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = { { WM_NCCALCSIZE, sent|wparam|defwinproc, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam|defwinproc, SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTMOVE }, { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI client */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI client */
{ 0x0093, sent|defwinproc|optional }, { WM_NCCALCSIZE, sent|wparam|defwinproc|optional, 1 }, /* XP sends it to MDI frame */ @@ -3520,11 +3521,11 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = { { 0x0093, sent|defwinproc|optional }, { 0x0093, sent|optional },
- { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI client */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* XP sends a duplicate */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI client */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* XP sends a duplicate */
/* in MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, @@ -3533,7 +3534,7 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = { { 0x0093, sent|defwinproc|optional }, { 0x0093, sent|defwinproc|optional }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ { 0x0093, sent|optional },
{ WM_NCACTIVATE, sent|wparam, 0 }, @@ -3543,7 +3544,7 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_SHOWWINDOW|SWP_STATECHANGED }, { WM_NCCALCSIZE, sent|wparam, 1 },
- { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 },
{ WM_CHILDACTIVATE, sent|wparam|lparam, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_SHOWWINDOW|SWP_NOMOVE|SWP_NOCLIENTMOVE|SWP_STATECHANGED }, @@ -3553,7 +3554,7 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = { { WM_WINDOWPOSCHANGING, sent|wparam|defwinproc, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam|defwinproc, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam|defwinproc, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */
/* in MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, @@ -3567,17 +3568,17 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = { { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOCLIENTMOVE }, { WM_SIZE, sent|wparam, SIZE_RESTORED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ { WM_NCCALCSIZE, sent|wparam|optional, 1 }, /* XP */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI client */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* XP sends a duplicate */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI client */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* XP sends a duplicate */
{ HCBT_SETFOCUS, hook }, { WM_KILLFOCUS, sent }, { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, /* in MDI client */
{ WM_MDIREFRESHMENU, sent }, /* in MDI client */ @@ -3593,11 +3594,11 @@ static const struct message WmDestroyMDIchildVisibleMaxSeq1[] = {
{ WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_ERASEBKGND, sent|parent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE },
- { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_DESTROY, sent }, { WM_NCDESTROY, sent }, { 0 } @@ -3608,20 +3609,20 @@ static const struct message WmMaximizeMDIchildInvisibleSeq[] = { { WM_GETMINMAXINFO, sent }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_STATECHANGED }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CHILDACTIVATE, sent|wparam|lparam, 0, 0 },
{ WM_WINDOWPOSCHANGING, sent|wparam|optional|defwinproc, SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCACTIVATE, sent|wparam|optional|defwinproc, 1 }, { HCBT_SETFOCUS, hook|optional }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|optional }, /* in MDI client */ { HCBT_SETFOCUS, hook|optional }, { WM_KILLFOCUS, sent|optional }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|optional|defwinproc }, { WM_MDIACTIVATE, sent|optional|defwinproc }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOMOVE|SWP_NOCLIENTMOVE|SWP_STATECHANGED }, @@ -3630,8 +3631,8 @@ static const struct message WmMaximizeMDIchildInvisibleSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ { 0 } }; /* ShowWindow(SW_MAXIMIZE) for a not visible maximized MDI child window */ @@ -3641,24 +3642,24 @@ static const struct message WmMaximizeMDIchildInvisibleSeq2[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED, 0, SWP_STATECHANGED /* w1064v1809 */ }, { WM_GETMINMAXINFO, sent|defwinproc }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CHILDACTIVATE, sent|wparam|lparam, 0, 0 },
{ WM_WINDOWPOSCHANGING, sent|wparam|defwinproc|optional, SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCACTIVATE, sent|wparam|defwinproc|optional, 1 }, { HCBT_SETFOCUS, hook|optional }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, /* in MDI client */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|optional }, /* in MDI client */ { HCBT_SETFOCUS, hook|optional }, { WM_KILLFOCUS, sent|optional }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, /* in MDI client */ { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc|optional }, { WM_MDIACTIVATE, sent|defwinproc|optional }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE, 0, SWP_STATECHANGED /* w1064v1809 */ }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ { WM_SIZE, sent|defwinproc|optional }, { 0 } }; @@ -3670,7 +3671,7 @@ static const struct message WmMaximizeMDIchildInvisibleParentSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_STATECHANGED }, { WM_GETMINMAXINFO, sent|defwinproc }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|optional, 0, 0 }, /* XP doesn't send it */ + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* XP doesn't send it */ { WM_CHILDACTIVATE, sent|wparam|lparam, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOREDRAW|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, @@ -3680,8 +3681,8 @@ static const struct message WmMaximizeMDIchildInvisibleParentSeq[] = { { WM_NCCALCSIZE, sent|wparam|defwinproc, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam|defwinproc, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { WM_NCCALCSIZE, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI child XP */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI client XP */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI child XP */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI client XP */ /* in MDI frame */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, @@ -3700,7 +3701,7 @@ static const struct message WmMaximizeMDIchildInvisibleParentSeq[] = { { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam, SIZE_RESTORED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI frame win2000 */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI frame win2000 */ /* in MDI client */ { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOACTIVATE }, { WM_NCCALCSIZE, sent|wparam, 1 }, @@ -3712,11 +3713,11 @@ static const struct message WmMaximizeMDIchildInvisibleParentSeq[] = { { WM_NCCALCSIZE, sent|wparam|defwinproc, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam|defwinproc, SWP_NOACTIVATE|SWP_NOMOVE|SWP_NOREDRAW|SWP_NOCLIENTMOVE }, { WM_SIZE, sent|defwinproc|wparam, SIZE_MAXIMIZED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI child win2000 */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI child win2000 */ { WM_NCCALCSIZE, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI child XP */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI child XP */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI client XP */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI child XP */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI child XP */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI client XP */ /* in MDI frame */ { 0x0093, sent|optional }, { WM_NCCALCSIZE, sent|wparam|optional, 1 }, @@ -3728,9 +3729,9 @@ static const struct message WmMaximizeMDIchildInvisibleParentSeq[] = { { 0x0092, sent|defwinproc|optional }, { 0x0092, sent|defwinproc|optional }, { 0x0092, sent|defwinproc|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI frame XP */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI frame XP */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* MDI child XP */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI frame XP */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI frame XP */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo|optional, 0, 0 }, /* MDI child XP */ { 0 } }; /* ShowWindow(SW_MAXIMIZE) for a visible MDI child window */ @@ -3746,8 +3747,8 @@ static const struct message WmMaximizeMDIchildVisibleSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ { 0 } }; /* ShowWindow(SW_RESTORE) for a visible maximized MDI child window */ @@ -3762,8 +3763,8 @@ static const struct message WmRestoreMDIchildVisibleSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ { 0 } }; /* ShowWindow(SW_RESTORE) for a visible minimized MDI child window */ @@ -3776,12 +3777,12 @@ static const struct message WmRestoreMDIchildVisibleSeq_2[] = { { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam, SIZE_RESTORED }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ - { EVENT_SYSTEM_MINIMIZEEND, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ + { EVENT_SYSTEM_MINIMIZEEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, { 0 } }; @@ -3794,8 +3795,8 @@ static const struct message WmMinimizeMDIchildVisibleSeq[] = { { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|defwinproc|wparam|lparam, SIZE_MINIMIZED, 0 }, { WM_CHILDACTIVATE, sent|wparam|lparam|defwinproc, 0, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ - { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ + { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ /* FIXME: Wine creates an icon/title window while Windows doesn't */ { WM_PARENTNOTIFY, sent|parent|wparam|optional, WM_CREATE }, /* MDI client */ { 0 } @@ -3805,7 +3806,7 @@ static const struct message WmRestoreMDIchildInvisibleSeq[] = { { HCBT_MINMAX, hook|lparam, 0, SW_RESTORE }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_STATECHANGED }, { WM_NCCALCSIZE, sent|wparam, 1 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CHILDACTIVATE, sent|wparam|lparam, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOMOVE|SWP_NOCLIENTMOVE|SWP_STATECHANGED }, { WM_SIZE, sent|defwinproc|wparam, SIZE_RESTORED }, @@ -3813,8 +3814,8 @@ static const struct message WmRestoreMDIchildInvisibleSeq[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, { WM_NCCALCSIZE, sent|wparam, 1 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI frame */ - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, /* MDI child */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI frame */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* MDI child */ { 0 } };
@@ -6166,7 +6167,7 @@ static const struct message WmSetFocusButtonSeq[] = { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam, 0 }, { WM_CTLCOLORBTN, sent|parent }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_BUTTON, BN_SETFOCUS) }, @@ -6176,7 +6177,7 @@ static const struct message WmSetFocusButtonSeq[] = static const struct message WmKillFocusButtonSeq[] = { { HCBT_SETFOCUS, hook }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_KILLFOCUS, sent|wparam, 0 }, { WM_CTLCOLORBTN, sent|parent }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_BUTTON, BN_KILLFOCUS) }, @@ -6192,7 +6193,7 @@ static const struct message WmSetFocusStaticSeq[] = { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam, 0 }, { WM_CTLCOLORSTATIC, sent|parent }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_BUTTON, BN_SETFOCUS) }, @@ -6203,7 +6204,7 @@ static const struct message WmSetFocusStaticSeq[] = static const struct message WmKillFocusStaticSeq[] = { { HCBT_SETFOCUS, hook }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_KILLFOCUS, sent|wparam, 0 }, { WM_CTLCOLORSTATIC, sent|parent }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_BUTTON, BN_KILLFOCUS) }, @@ -6219,7 +6220,7 @@ static const struct message WmSetFocusOwnerdrawSeq[] = { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam, 0 }, { WM_CTLCOLORBTN, sent|parent }, { WM_DRAWITEM, sent|wparam|lparam|parent, ID_BUTTON, 0x001040e4 }, @@ -6230,7 +6231,7 @@ static const struct message WmSetFocusOwnerdrawSeq[] = static const struct message WmKillFocusOwnerdrawSeq[] = { { HCBT_SETFOCUS, hook }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_KILLFOCUS, sent|wparam, 0 }, { WM_CTLCOLORBTN, sent|parent }, { WM_DRAWITEM, sent|wparam|lparam|parent, ID_BUTTON, 0x000040e4 }, @@ -6246,31 +6247,31 @@ static const struct message WmKillFocusOwnerdrawSeq[] = static const struct message WmLButtonDownSeq[] = { { WM_LBUTTONDOWN, sent|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, { WM_CTLCOLORBTN, sent|defwinproc }, { BM_SETSTATE, sent|wparam|defwinproc, TRUE }, { WM_CTLCOLORBTN, sent|defwinproc }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { 0 } }; static const struct message WmLButtonDownStaticSeq[] = { { WM_LBUTTONDOWN, sent|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, { WM_CTLCOLORSTATIC, sent|defwinproc }, { BM_SETSTATE, sent|wparam|defwinproc, TRUE }, { WM_CTLCOLORSTATIC, sent|defwinproc }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { 0 } }; static const struct message WmLButtonUpSeq[] = @@ -6278,8 +6279,8 @@ static const struct message WmLButtonUpSeq[] = { WM_LBUTTONUP, sent|wparam|lparam, 0, 0 }, { BM_SETSTATE, sent|wparam|defwinproc, FALSE }, { WM_CTLCOLORBTN, sent|defwinproc }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CAPTURECHANGED, sent|wparam|defwinproc, 0 }, { 0 } }; @@ -6288,8 +6289,8 @@ static const struct message WmLButtonUpStaticSeq[] = { WM_LBUTTONUP, sent|wparam|lparam, 0, 0 }, { BM_SETSTATE, sent|wparam|defwinproc, FALSE }, { WM_CTLCOLORSTATIC, sent|defwinproc }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CAPTURECHANGED, sent|wparam|defwinproc, 0 }, { 0 } }; @@ -6298,8 +6299,8 @@ static const struct message WmLButtonUpAutoSeq[] = { WM_LBUTTONUP, sent|wparam|lparam, 0, 0 }, { BM_SETSTATE, sent|wparam|defwinproc, FALSE }, { WM_CTLCOLORSTATIC, sent|defwinproc }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { BM_SETCHECK, sent|defwinproc }, { WM_CTLCOLORSTATIC, sent|defwinproc, 0, 0 }, { WM_CAPTURECHANGED, sent|wparam|defwinproc, 0 }, @@ -7001,26 +7002,26 @@ static const struct message auto_radio_button_BM_CLICK[] = { { BM_CLICK, sent|wparam|lparam, 0, 0 }, { WM_LBUTTONDOWN, sent|wparam|lparam|defwinproc, 0, 0 }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { BM_SETSTATE, sent|wparam|lparam|defwinproc, BST_CHECKED, ID_RADIO2 }, { WM_CTLCOLORSTATIC, sent|parent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_LBUTTONUP, sent|wparam|lparam|defwinproc, 0, 0 }, { BM_SETSTATE, sent|wparam|lparam|defwinproc, BST_UNCHECKED, ID_RADIO2 }, { WM_CTLCOLORSTATIC, sent|parent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_GETDLGCODE, sent|wparam|lparam|defwinproc, ID_RADIO2, 0 }, { BM_SETCHECK, sent|wparam|lparam|defwinproc, BST_CHECKED, ID_RADIO2 }, { WM_GETDLGCODE, sent|wparam|lparam|defwinproc, ID_RADIO1, 0 }, { BM_SETCHECK, sent|wparam|lparam|defwinproc, 0, ID_RADIO1 }, { WM_CTLCOLORSTATIC, sent|parent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_GETDLGCODE, sent|wparam|lparam|defwinproc, ID_RADIO3, 0 }, { BM_SETCHECK, sent|wparam|lparam|defwinproc, 0, ID_RADIO3 }, { WM_CTLCOLORSTATIC, sent|parent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_GETDLGCODE, sent|wparam|lparam|defwinproc, ID_TEXT, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CAPTURECHANGED, sent|wparam|lparam|defwinproc, 0, 0 }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_RADIO2, BN_CLICKED) }, { WM_NCHITTEST, sent|optional, 0, 0 }, /* FIXME: Wine doesn't send it */ @@ -7091,7 +7092,7 @@ static const struct message auto_radio_button_VK_DOWN_dialog[] = { WM_KILLFOCUS, sent, 0, 0 }, { WM_CTLCOLORSTATIC, sent|parent }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_RADIO3, BN_KILLFOCUS) }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent, 0, 0 }, { WM_CTLCOLORSTATIC, sent|parent }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_RADIO1, BN_SETFOCUS) }, @@ -7102,28 +7103,28 @@ static const struct message auto_radio_button_VK_DOWN_dialog[] = { BM_GETCHECK, sent|wparam|lparam, 0, ID_RADIO1 }, { BM_CLICK, sent|wparam|lparam, 1, 0 }, { WM_LBUTTONDOWN, sent|wparam|lparam|defwinproc, 0, 0 }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { BM_SETSTATE, sent|wparam|lparam|defwinproc, BST_CHECKED, ID_RADIO1 }, { WM_CTLCOLORSTATIC, sent|parent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_LBUTTONUP, sent|wparam|lparam|defwinproc, 0, 0 }, { BM_SETSTATE, sent|wparam|lparam|defwinproc, BST_UNCHECKED, ID_RADIO1 }, { WM_CTLCOLORSTATIC, sent|parent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_GETDLGCODE, sent|wparam|lparam|defwinproc, ID_RADIO1, 0 }, { BM_SETCHECK, sent|wparam|lparam|defwinproc, BST_CHECKED, ID_RADIO1 }, { WM_CTLCOLORSTATIC, sent|parent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_GETDLGCODE, sent|wparam|lparam|defwinproc, ID_RADIO3, 0 }, { BM_SETCHECK, sent|wparam|lparam|defwinproc, BST_UNCHECKED, ID_RADIO3 }, { WM_CTLCOLORSTATIC, sent|parent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_GETDLGCODE, sent|wparam|lparam|defwinproc, ID_TEXT, 0 }, { WM_GETDLGCODE, sent|wparam|lparam|defwinproc, ID_RADIO2, 0 }, { BM_SETCHECK, sent|wparam|lparam|defwinproc, BST_UNCHECKED, ID_RADIO2 }, { WM_CTLCOLORSTATIC, sent|parent }, - { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_STATECHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CAPTURECHANGED, sent|wparam|lparam|defwinproc, 0, 0 }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_RADIO1, BN_CLICKED) }, { WM_NCHITTEST, sent|optional, 0, 0 }, /* FIXME: Wine doesn't send it */ @@ -9147,16 +9148,16 @@ static const struct message WmAltVkN[] = { { WM_SYSCOMMAND, sent|defwinproc|wparam|lparam, SC_KEYMENU, 'n' }, { HCBT_SYSCOMMAND, hook }, { WM_ENTERMENULOOP, sent|defwinproc|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0x00AE, sent|defwinproc|optional }, /* XP */ { WM_GETTEXT, sent|defwinproc|optional }, /* XP */ { WM_INITMENU, sent|defwinproc }, - { EVENT_SYSTEM_MENUSTART, winevent_hook|wparam|lparam, OBJID_SYSMENU, 0 }, + { EVENT_SYSTEM_MENUSTART, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 0 }, { WM_MENUCHAR, sent|defwinproc|wparam, MAKEWPARAM('n',MF_SYSMENU) }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CAPTURECHANGED, sent|defwinproc }, { WM_MENUSELECT, sent|defwinproc|wparam, MAKEWPARAM(0,0xffff) }, - { EVENT_SYSTEM_MENUEND, winevent_hook|wparam|lparam, OBJID_SYSMENU, 0 }, + { EVENT_SYSTEM_MENUEND, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 0 }, { WM_EXITMENULOOP, sent|defwinproc }, { WM_MENUSELECT, sent|defwinproc|wparam|optional, MAKEWPARAM(0,0xffff) }, /* Win95 bug */ { WM_EXITMENULOOP, sent|defwinproc|optional }, /* Win95 bug */ @@ -9264,19 +9265,19 @@ static const struct message WmAltPressRelease[] = { { WM_SYSCOMMAND, sent|defwinproc|wparam|lparam, SC_KEYMENU, 0 }, { HCBT_SYSCOMMAND, hook }, { WM_ENTERMENULOOP, sent|defwinproc|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_INITMENU, sent|defwinproc }, - { EVENT_SYSTEM_MENUSTART, winevent_hook|wparam|lparam, OBJID_SYSMENU, 0 }, + { EVENT_SYSTEM_MENUSTART, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 0 }, { WM_MENUSELECT, sent|defwinproc|wparam, MAKEWPARAM(0,MF_SYSMENU|MF_POPUP|MF_HILITE), 0, MAKEWPARAM(0,MF_RIGHTJUSTIFY) }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_SYSMENU, 1 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 1 },
{ HCBT_KEYSKIPPED, hook|wparam|lparam|optional, VK_MENU, 0x30000001 }, /* XP */
- { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_SYSMENU, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0, }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0, }, { WM_CAPTURECHANGED, sent|defwinproc }, { WM_MENUSELECT, sent|defwinproc|wparam|optional, MAKEWPARAM(0,0xffff) }, - { EVENT_SYSTEM_MENUEND, winevent_hook|wparam|lparam, OBJID_SYSMENU, 0 }, + { EVENT_SYSTEM_MENUEND, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 0 }, { WM_EXITMENULOOP, sent|defwinproc }, { HCBT_KEYSKIPPED, hook|wparam|lparam|optional, VK_MENU, 0xc0000001 }, /* XP */ { WM_SYSKEYUP, wparam|lparam, VK_MENU, 0xc0000001 }, @@ -9333,20 +9334,20 @@ static const struct message WmVkF10Seq[] = { { WM_SYSCOMMAND, sent|defwinproc|wparam, SC_KEYMENU }, { HCBT_SYSCOMMAND, hook }, { WM_ENTERMENULOOP, sent|defwinproc|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_INITMENU, sent|defwinproc }, - { EVENT_SYSTEM_MENUSTART, winevent_hook|wparam|lparam, OBJID_SYSMENU, 0 }, + { EVENT_SYSTEM_MENUSTART, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 0 }, { WM_MENUSELECT, sent|defwinproc|wparam, MAKEWPARAM(0,MF_SYSMENU|MF_POPUP|MF_HILITE), 0, MAKEWPARAM(0,MF_RIGHTJUSTIFY) }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_SYSMENU, 1 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 1 },
{ HCBT_KEYSKIPPED, hook|wparam|lparam|optional, VK_F10, 0x10000001 }, /* XP */
{ HCBT_KEYSKIPPED, hook|wparam|lparam|optional, VK_F10, 1 }, /* XP */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_SYSMENU, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0, }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0, }, { WM_CAPTURECHANGED, sent|defwinproc }, { WM_MENUSELECT, sent|defwinproc|wparam|optional, MAKEWPARAM(0,0xffff) }, - { EVENT_SYSTEM_MENUEND, winevent_hook|wparam|lparam, OBJID_SYSMENU, 0 }, + { EVENT_SYSTEM_MENUEND, winevent_hook|wparam|lparam|winevent_todo, OBJID_SYSMENU, 0 }, { WM_EXITMENULOOP, sent|defwinproc }, { HCBT_KEYSKIPPED, hook|wparam|lparam|optional, VK_F10, 0xc0000001 }, /* XP */ { WM_SYSKEYUP, wparam|lparam, VK_F10, 0xc0000001 }, @@ -11353,16 +11354,16 @@ static void test_scrollwindowex(void) }
static const struct message destroy_window_with_children[] = { - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, /* popup */ + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* popup */ { HCBT_DESTROYWND, hook|lparam, 0, WND_PARENT_ID }, /* parent */ { 0x0090, sent|optional }, { HCBT_DESTROYWND, hook|lparam, 0, WND_POPUP_ID }, /* popup */ { 0x0090, sent|optional }, - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, /* popup */ + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* popup */ { WM_DESTROY, sent|wparam|lparam, 0, WND_POPUP_ID }, /* popup */ { WM_CAPTURECHANGED, sent|wparam|lparam, 0, WND_POPUP_ID }, /* popup */ { WM_NCDESTROY, sent|wparam|lparam, 0, WND_POPUP_ID }, /* popup */ - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, 0, 0 }, /* parent */ + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, /* parent */ { WM_DESTROY, sent|wparam|lparam, 0, WND_PARENT_ID }, /* parent */ { WM_DESTROY, sent|wparam|lparam, 0, WND_CHILD_ID + 2 }, /* child2 */ { WM_DESTROY, sent|wparam|lparam, 0, WND_CHILD_ID + 1 }, /* child1 */ @@ -11712,14 +11713,14 @@ static const struct message sl_edit_setfocus[] = { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam, 0 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 10 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 15 }, { WM_CTLCOLOREDIT, sent|parent }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 11 }, - { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { WM_COMMAND, sent|parent|wparam, MAKEWPARAM(ID_EDIT, EN_SETFOCUS) }, { 0 } }; @@ -11728,7 +11729,7 @@ static const struct message sl_edit_invisible[] = { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_KILLFOCUS, sent|parent }, { WM_SETFOCUS, sent }, { WM_COMMAND, sent|parent|wparam, MAKEWPARAM(ID_EDIT, EN_SETFOCUS) }, @@ -11739,22 +11740,22 @@ static const struct message ml_edit_setfocus[] = { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam, 0 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 10 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 11 }, - { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { WM_COMMAND, sent|parent|wparam, MAKEWPARAM(ID_EDIT, EN_SETFOCUS) }, { 0 } }; static const struct message sl_edit_killfocus[] = { { HCBT_SETFOCUS, hook }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_KILLFOCUS, sent|wparam, 0 }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_DESTROY, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { WM_COMMAND, sent|parent|wparam, MAKEWPARAM(ID_EDIT, EN_KILLFOCUS) }, { WM_IME_SETCONTEXT, sent|wparam|optional, 0 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 1 }, @@ -11763,7 +11764,7 @@ static const struct message sl_edit_killfocus[] = static const struct message sl_edit_lbutton_dblclk[] = { { WM_LBUTTONDBLCLK, sent }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } }; static const struct message sl_edit_lbutton_down[] = @@ -11772,52 +11773,52 @@ static const struct message sl_edit_lbutton_down[] = { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 10 }, { WM_CTLCOLOREDIT, sent|parent }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 11 }, - { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { WM_COMMAND, sent|parent|wparam, MAKEWPARAM(ID_EDIT, EN_SETFOCUS) }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { WM_CTLCOLOREDIT, sent|parent|optional }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 11 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { 0 } }; static const struct message ml_edit_lbutton_down[] = { { WM_LBUTTONDOWN, sent|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam|defwinproc, 0 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 10 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 11 }, - { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { WM_COMMAND, sent|parent|wparam, MAKEWPARAM(ID_EDIT, EN_SETFOCUS) }, { 0 } }; static const struct message sl_edit_lbutton_up[] = { { WM_LBUTTONUP, sent|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CAPTURECHANGED, sent|defwinproc }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { 0 } }; static const struct message ml_edit_lbutton_up[] = { { WM_LBUTTONUP, sent|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CAPTURECHANGED, sent|defwinproc }, { 0 } }; @@ -13201,7 +13202,7 @@ static const struct message WmSetWindowRgn[] = { { WM_GETTEXT, sent|defwinproc|optional }, { WM_ERASEBKGND, sent|optional }, { WM_WINDOWPOSCHANGED, sent|wparam|lparam, SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOSIZE|SWP_NOMOVE, 0xf }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } };
@@ -13210,7 +13211,7 @@ static const struct message WmSetWindowRgn_no_redraw[] = { |SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOSIZE|SWP_NOMOVE|SWP_NOREDRAW, 0 }, { WM_NCCALCSIZE, sent|wparam|lparam, 1, 0xf }, { WM_WINDOWPOSCHANGED, sent|wparam|lparam, SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOSIZE|SWP_NOMOVE|SWP_NOREDRAW, 0xf }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } };
@@ -13237,8 +13238,8 @@ static const struct message WmSetWindowRgn_clear[] = { { WM_NCPAINT, sent|optional }, { WM_GETTEXT, sent|defwinproc|optional }, { WM_ERASEBKGND, sent|optional }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { 0 } };
@@ -13400,7 +13401,7 @@ static const struct message WmHide_3[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { HCBT_SETFOCUS, hook|optional }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { 0 } }; static const struct message WmShowMinimized_1[] = { @@ -13416,7 +13417,7 @@ static const struct message WmShowMinimized_1[] = { static const struct message WmMinimize_1[] = { { HCBT_MINMAX, hook|lparam, 0, SW_MINIMIZE }, { HCBT_SETFOCUS, hook|optional }, /* win2000 doesn't send it */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, @@ -13865,14 +13866,14 @@ static const struct message WmDefDlgSetFocus_1[] = { { HCBT_SETFOCUS, hook }, { WM_IME_SETCONTEXT, sent|wparam|optional, 1 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|wparam, 0 }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 10 }, { WM_CTLCOLOREDIT, sent }, { WM_IME_NOTIFY, sent|wparam|defwinproc|optional, 11 }, - { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_CREATE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { WM_COMMAND, sent|wparam, MAKEWPARAM(1, EN_SETFOCUS) }, { 0 } }; @@ -13882,9 +13883,9 @@ static const struct message WmDefDlgSetFocus_2[] = { { WM_GETTEXT, sent|wparam|optional, 6 }, /* XP */ { WM_GETTEXT, sent|wparam|optional, 12 }, /* XP */ { EM_SETSEL, sent|wparam, 0 }, /* XP sets lparam to text length, Win9x to -2 */ - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { WM_CTLCOLOREDIT, sent|optional }, /* XP */ - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, OBJID_CARET, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, OBJID_CARET, 0 }, { 0 } }; /* Creation of a dialog */ @@ -14970,8 +14971,8 @@ static const struct message wm_lb_setcursel_0[] = { LB_SETCURSEL, sent|wparam|lparam, 0, 0 }, { WM_CTLCOLORLISTBOX, sent|parent }, { WM_DRAWITEM, sent|wparam|lparam|parent, ID_LISTBOX, 0x000120f2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 1 }, - { EVENT_OBJECT_SELECTION, winevent_hook|wparam|lparam, OBJID_CLIENT, 1 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 1 }, + { EVENT_OBJECT_SELECTION, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 1 }, { 0 } }; static const struct message wm_lb_setcursel_1[] = @@ -14981,8 +14982,8 @@ static const struct message wm_lb_setcursel_1[] = { WM_DRAWITEM, sent|wparam|lparam|parent, ID_LISTBOX, 0x000020f2 }, { WM_CTLCOLORLISTBOX, sent|parent }, { WM_DRAWITEM, sent|wparam|lparam|parent, ID_LISTBOX, 0x000121f2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 2 }, - { EVENT_OBJECT_SELECTION, winevent_hook|wparam|lparam, OBJID_CLIENT, 2 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 2 }, + { EVENT_OBJECT_SELECTION, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 2 }, { 0 } }; static const struct message wm_lb_setcursel_2[] = @@ -14992,8 +14993,8 @@ static const struct message wm_lb_setcursel_2[] = { WM_DRAWITEM, sent|wparam|lparam|parent, ID_LISTBOX, 0x000021f2 }, { WM_CTLCOLORLISTBOX, sent|parent }, { WM_DRAWITEM, sent|wparam|lparam|parent, ID_LISTBOX, 0x000122f2 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 3 }, - { EVENT_OBJECT_SELECTION, winevent_hook|wparam|lparam, OBJID_CLIENT, 3 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 3 }, + { EVENT_OBJECT_SELECTION, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 3 }, { 0 } }; static const struct message wm_lb_click_0[] = @@ -15003,14 +15004,14 @@ static const struct message wm_lb_click_0[] = { WM_KILLFOCUS, sent|parent }, { WM_IME_SETCONTEXT, sent|wparam|optional|parent, 0 }, { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc },
{ WM_DRAWITEM, sent|wparam|lparam|parent, ID_LISTBOX, 0x001142f2 }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_LISTBOX, LBN_SETFOCUS) }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 3 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 3 }, { WM_LBTRACKPOINT, sent|wparam|lparam|parent, 0, MAKELPARAM(1,1) }, - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 },
{ WM_DRAWITEM, sent|wparam|lparam|parent, ID_LISTBOX, 0x000142f2 }, { WM_CTLCOLORLISTBOX, sent|parent }, @@ -15019,11 +15020,11 @@ static const struct message wm_lb_click_0[] = { WM_DRAWITEM, sent|wparam|lparam|parent, ID_LISTBOX, 0x000120f2 }, { WM_DRAWITEM, sent|wparam|lparam|parent, ID_LISTBOX, 0x001140f2 },
- { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 1 }, - { EVENT_OBJECT_SELECTION, winevent_hook|wparam|lparam, OBJID_CLIENT, 1 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 1 }, + { EVENT_OBJECT_SELECTION, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 1 },
{ WM_LBUTTONUP, sent|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CAPTURECHANGED, sent|wparam|lparam|defwinproc, 0, 0 }, { WM_COMMAND, sent|wparam|parent, MAKEWPARAM(ID_LISTBOX, LBN_SELCHANGE) }, { 0 } @@ -15671,8 +15672,8 @@ static void test_paintingloop(void)
static const struct message NCRBUTTONDOWNSeq[] = { - { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam, 0, 0 }, - { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_CAPTURESTART, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, + { EVENT_SYSTEM_CAPTUREEND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_CAPTURECHANGED, sent }, { WM_CONTEXTMENU, sent, /*hwnd*/0, -1 }, { 0 } @@ -16671,12 +16672,12 @@ static void test_WaitForInputIdle( char *argv0 )
static const struct message WmSetParentSeq_1[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, - { EVENT_OBJECT_PARENTCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_PARENTCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOSIZE }, { WM_CHILDACTIVATE, sent }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOSIZE|SWP_NOREDRAW|SWP_NOCLIENTSIZE }, { WM_MOVE, sent|defwinproc|wparam, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SHOWWINDOW, sent|wparam, 1 }, { 0 } }; @@ -16684,29 +16685,29 @@ static const struct message WmSetParentSeq_1[] = { static const struct message WmSetParentSeq_2[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { HCBT_SETFOCUS, hook|optional }, { WM_NCACTIVATE, sent|wparam|optional, 0 }, { WM_ACTIVATE, sent|wparam|optional, 0 }, { WM_ACTIVATEAPP, sent|wparam|optional, 0 }, { WM_KILLFOCUS, sent|wparam, 0 }, - { EVENT_OBJECT_PARENTCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_PARENTCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOSIZE }, { HCBT_ACTIVATE, hook|optional }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_NCACTIVATE, sent|wparam|optional, 1 }, { WM_ACTIVATE, sent|wparam|optional, 1 }, { HCBT_SETFOCUS, hook|optional }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|optional|defwinproc }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOREDRAW|SWP_NOSIZE|SWP_NOCLIENTSIZE }, { WM_MOVE, sent|defwinproc|wparam, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } }; @@ -18284,15 +18285,6 @@ START_TEST(msg)
test_winevents();
- /* Fix message sequences before removing 4 lines below */ - if (pUnhookWinEvent && hEvent_hook) - { - ret = pUnhookWinEvent(hEvent_hook); - ok( ret, "UnhookWinEvent error %d\n", GetLastError()); - pUnhookWinEvent = 0; - } - hEvent_hook = 0; - test_SendMessage_other_thread(1); test_SendMessage_other_thread(2); test_InSendMessage();
Hi,
While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=95550
Your paranoid android.
=== w7u_2qxl (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 11: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:17576: Test failed: WmSetLayeredStyle: 1: the msg 0x007d was expected, but got msg 0x800b instead msg.c:17576: Test failed: WmSetLayeredStyle: 3: the msg sequence is not complete: expected 0000 - actual 007d msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17602: Test failed: WmSetLayeredStyle2: 7: the msg sequence is not complete: expected 0000 - actual 8004 msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (337197 bytes)
=== w7u_adm (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5363: Test failed: ShowWindow(SW_HIDE):overlapped: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x800b instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x000d instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 11: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:17576: Test failed: WmSetLayeredStyle: 1: the msg 0x007d was expected, but got msg 0x800b instead msg.c:17576: Test failed: WmSetLayeredStyle: 3: the msg sequence is not complete: expected 0000 - actual 007d msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17602: Test failed: WmSetLayeredStyle2: 7: the msg sequence is not complete: expected 0000 - actual 8004 msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (332688 bytes)
=== w7u_el (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 11: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:17576: Test failed: WmSetLayeredStyle: 1: the msg 0x007d was expected, but got msg 0x800b instead msg.c:17576: Test failed: WmSetLayeredStyle: 3: the msg sequence is not complete: expected 0000 - actual 007d msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17602: Test failed: WmSetLayeredStyle2: 7: the msg sequence is not complete: expected 0000 - actual 8004 msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (310906 bytes)
=== w8 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5363: Test failed: ShowWindow(SW_HIDE):overlapped: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0085 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0014 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (328129 bytes)
=== w8adm (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (326059 bytes)
=== w864 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (326103 bytes)
=== w1064v1507 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (331474 bytes)
=== w1064v1809 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (335052 bytes)
=== w1064 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (335000 bytes)
=== w1064_tsign (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (334467 bytes)
=== w10pro64 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5363: Test failed: ShowWindow(SW_HIDE):overlapped: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0085 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0014 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (336827 bytes)
=== w864 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (341535 bytes)
=== w1064v1507 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (347034 bytes)
=== w1064v1809 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (351034 bytes)
=== w1064 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (351041 bytes)
=== w1064_2qxl (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (350687 bytes)
=== w1064_tsign (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (350475 bytes)
=== w10pro64 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (350713 bytes)
=== w10pro64_ar (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5363: Test failed: ShowWindow(SW_HIDE):overlapped: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0085 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0014 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11936: Test failed: SetFocus(hwnd) on multiline edit: 9: the msg 0x0111 was expected, but got msg 0x800b instead msg.c:11936: Test failed: SetFocus(hwnd) on multiline edit: 10: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (333845 bytes)
=== w10pro64_he (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11936: Test failed: SetFocus(hwnd) on multiline edit: 9: the msg 0x0111 was expected, but got msg 0x800b instead msg.c:11936: Test failed: SetFocus(hwnd) on multiline edit: 10: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (331392 bytes)
=== w10pro64_ja (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0014 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (330549 bytes)
=== w10pro64_zh_CN (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (330926 bytes)
=== debiant2 (32 bit Japanese:Japan report) ===
user32: msg.c:14835: Test failed: bad time 71501da
On Thu, Aug 12, 2021 at 10:55:15AM -0500, Marvin wrote:
Hi,
While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=95550
Your paranoid android.
=== w7u_2qxl (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 11: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:17576: Test failed: WmSetLayeredStyle: 1: the msg 0x007d was expected, but got msg 0x800b instead msg.c:17576: Test failed: WmSetLayeredStyle: 3: the msg sequence is not complete: expected 0000 - actual 007d msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17602: Test failed: WmSetLayeredStyle2: 7: the msg sequence is not complete: expected 0000 - actual 8004 msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (337197 bytes)
=== w7u_adm (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5363: Test failed: ShowWindow(SW_HIDE):overlapped: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x800b instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x000d instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 11: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:17576: Test failed: WmSetLayeredStyle: 1: the msg 0x007d was expected, but got msg 0x800b instead msg.c:17576: Test failed: WmSetLayeredStyle: 3: the msg sequence is not complete: expected 0000 - actual 007d msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17602: Test failed: WmSetLayeredStyle2: 7: the msg sequence is not complete: expected 0000 - actual 8004 msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (332688 bytes)
=== w7u_el (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 10: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 11: the msg 0x0046 was expected, but got msg 0x8004 instead msg.c:17576: Test failed: WmSetLayeredStyle: 1: the msg 0x007d was expected, but got msg 0x800b instead msg.c:17576: Test failed: WmSetLayeredStyle: 3: the msg sequence is not complete: expected 0000 - actual 007d msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17602: Test failed: WmSetLayeredStyle2: 7: the msg sequence is not complete: expected 0000 - actual 8004 msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (310906 bytes)
=== w8 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5363: Test failed: ShowWindow(SW_HIDE):overlapped: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0085 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0014 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (328129 bytes)
=== w8adm (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (326059 bytes)
=== w864 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (326103 bytes)
=== w1064v1507 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (331474 bytes)
=== w1064v1809 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (335052 bytes)
=== w1064 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (335000 bytes)
=== w1064_tsign (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (334467 bytes)
=== w10pro64 (32 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5363: Test failed: ShowWindow(SW_HIDE):overlapped: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0085 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0014 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (336827 bytes)
=== w864 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (341535 bytes)
=== w1064v1507 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14473: Test failed: SetActiveWindow(0): 23: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (347034 bytes)
=== w1064v1809 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (351034 bytes)
=== w1064 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (351041 bytes)
=== w1064_2qxl (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (350687 bytes)
=== w1064_tsign (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (350475 bytes)
=== w10pro64 (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:9618: Test failed: SHIFT+F10 press/release: 13: the msg 0x0116 was expected, but got msg 0x0008 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15575: Test failed: popup menu command: 11: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15575: Test failed: popup menu command: 16: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 17: the msg 0x011f was expected, but got msg 0x8002 instead msg.c:15575: Test failed: popup menu command: 18: the msg 0x0212 was expected, but got msg 0x800b instead msg.c:15575: Test failed: popup menu command: 19: the msg 0x0126 was expected, but got msg 0x0006 instead msg.c:15575: Test failed: popup menu command: 21: the msg 0x0101 was expected, but got msg 0x011f instead msg.c:15575: Test failed: popup menu command: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:15593: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15593: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15593: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15593: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15593: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15593: Test failed: submenu of a popup menu command: 28: the msg 0x0126 was expected, but got msg 0x8005 instead msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15593: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15593: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15593: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15641: Test failed: submenu of a popup menu command: 13: the msg 0x011f was expected, but got msg 0x8000 instead msg.c:15641: Test failed: submenu of a popup menu command: 22: the msg 0x0004 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 23: the msg 0x0125 was expected, but got msg 0x8002 instead msg.c:15641: Test failed: submenu of a popup menu command: 25: the msg 0x0125 was expected, but got msg 0x800b instead msg.c:15641: Test failed: submenu of a popup menu command: 26: the msg 0x011f was expected, but got msg 0x0006 instead msg.c:15641: Test failed: submenu of a popup menu command: 27: the msg 0x0212 was expected, but got msg 0x011f instead msg.c:15641: Test failed: submenu of a popup menu command: 28: the msg 0x0111 was expected, but got msg 0x8005 instead msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting wParam 0xd got 0x46 msg.c:15641: Test failed: submenu of a popup menu command: 29: in msg 0x0007 expecting lParam 0xc0000001 got 0xf0000001 msg.c:15641: Test failed: submenu of a popup menu command: 30: the msg 0x0101 was expected, but got msg 0x0007 instead msg.c:15641: Test failed: submenu of a popup menu command: 31: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (350713 bytes)
=== w10pro64_ar (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5363: Test failed: ShowWindow(SW_HIDE):overlapped: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0085 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0014 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11936: Test failed: SetFocus(hwnd) on multiline edit: 9: the msg 0x0111 was expected, but got msg 0x800b instead msg.c:11936: Test failed: SetFocus(hwnd) on multiline edit: 10: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (333845 bytes)
=== w10pro64_he (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11936: Test failed: SetFocus(hwnd) on multiline edit: 9: the msg 0x0111 was expected, but got msg 0x800b instead msg.c:11936: Test failed: SetFocus(hwnd) on multiline edit: 10: the msg sequence is not complete: expected 0000 - actual 0111 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (331392 bytes)
=== w10pro64_ja (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0014 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (330549 bytes)
=== w10pro64_zh_CN (64 bit report) ===
user32: msg.c:17336: Test failed: SetFocus on a child window: 3: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:17343: Test failed: SetFocus on a parent window: 2: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:17343: Test failed: SetFocus on a parent window: 3: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:16770: Test failed: SetParent() visible WS_POPUP: 8: the msg 0x0008 was expected, but got msg 0x8005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 4: the msg 0x0009 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 5: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 1: ShowWindow(SW_SHOWNORMAL): 6: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 3: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 7: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 7: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 11: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 13: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 15: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 17: ShowWindow(SW_SHOW): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 19: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 21: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 22: ShowWindow(SW_SHOWMINNOACTIVE): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 24: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 2: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 26: ShowWindow(SW_SHOWNA): 3: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 28: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 30: ShowWindow(SW_RESTORE): 9: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 32: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 5: the msg 0x0047 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 37: ShowWindow(SW_RESTORE): 6: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 3: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 4: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 5: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 40: ShowWindow(SW_MINIMIZE): 6: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 10: the msg 0x0003 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 11: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 44: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0005 msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 6: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 8: the msg 0x0005 was expected, but got msg 0x0003 instead msg.c:13728: Test failed: 46: ShowWindow(SW_RESTORE): 10: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:13728: Test failed: 47: ShowWindow(SW_RESTORE): 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 9: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 7: the msg sequence is not complete: expected 0000 - actual 800b msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 52: ShowWindow(SW_HIDE): 5: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 5: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 6: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 54: ShowWindow(SW_MINIMIZE): 7: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 2: the msg 0x0047 was expected, but got msg 0x8003 instead msg.c:13728: Test failed: 55: ShowWindow(SW_HIDE): 4: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 5: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 6: the msg 0x0003 was expected, but got msg 0x8002 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13728: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 13: the msg sequence is not complete: expected 0000 - actual 0003 msg.c:5403: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 27: the msg 0x0014 was expected, but got msg 0x8004 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 28: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 29: the msg 0x0003 was expected, but got msg 0x0003 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 30: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 38: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5416: Test failed: ShowWindow(SW_RESTORE):overlapped: 44: the msg sequence is not complete: expected 0000 - actual 0086 msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5470: Test failed: RedrawWindow:show_popup_first_draw_visible: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 12: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 13: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 14: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 19: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 20: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 23: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 24: the msg 0x000f was expected, but got msg 0x0007 instead msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 25: the msg 0x0085 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 26: the msg 0x0014 should have been sent by BeginPaint msg.c:5481: Test failed: RedrawWindow:show_popup_first_draw_show: 27: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 11: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 17: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 18: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 19: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 24: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 25: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 26: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 27: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 29: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 30: the msg 0x0005 was expected, but got msg 0x0007 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 31: the msg 0x000f was expected, but got msg 0x0085 instead msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 33: the msg 0x0014 should have been sent by BeginPaint msg.c:5492: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 34: the msg sequence is not complete: expected 0000 - actual 0047 msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5496: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x8005 instead msg.c:5497: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5501: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5502: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5505: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5507: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5510: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5511: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5512: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5514: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 23: the msg 0x0003 was expected, but got msg 0x0007 instead msg.c:5519: Test failed: SetWindowPos:show_popup_first_show_window: 24: the msg sequence is not complete: expected 0000 - actual 0085 msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5521: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 8: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 11: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 12: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 18: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 20: the msg 0x0047 was expected, but got msg 0x0006 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 21: the msg 0x0003 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 22: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window_child1: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5555: Test failed: SetWindowPos:show_popup_first_show_window_child2: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 9: the msg 0x0005 was expected, but got msg 0x8002 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 15: the msg 0x001c was expected, but got msg 0x0005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 16: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 17: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 22: the msg 0x0009 was expected, but got msg 0x001c instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 23: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 24: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 25: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 26: the msg 0x0047 was expected, but got msg 0x8005 instead msg.c:5565: Test failed: RedrawWindow:show_popup_extreme_location: 29: the msg sequence is not complete: expected 0000 - actual 0007 msg.c:5969: Test failed: Z-Order: 4: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:5978: Test failed: FrameChanged: 4: the msg sequence is not complete: expected 0000 - actual 800b msg.c:5987: Test failed: FrameChanged: 5: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4924: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 29: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4975: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 6: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:4985: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 6: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5005: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:5015: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 4: the msg 0x0047 was expected, but got msg 0x8004 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 6: the msg 0x0009 was expected, but got msg 0x0086 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 7: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 8: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 9: the msg 0x0009 was expected, but got msg 0x8005 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 10: the msg 0x0008 was expected, but got msg 0x0007 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 11: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 12: the msg 0x0222 was expected, but got msg 0x0008 instead msg.c:4240: Test failed: WM_CHILDACTIVATE sent to enabled window: 13: the msg sequence is not complete: expected 0000 - actual 8005 msg.c:4382: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 23: the msg sequence is not complete: expected 0000 - actual 800b msg.c:4451: Test failed: Not maximized child did not switch correctly: 12: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 13: the msg 0x0009 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 14: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 17: the msg 0x0007 was expected, but got msg 0x0008 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 18: the msg 0x0222 was expected, but got msg 0x8005 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 19: the msg 0x0047 was expected, but got msg 0x0007 instead msg.c:4451: Test failed: Not maximized child did not switch correctly: 20: the msg sequence is not complete: expected 0000 - actual 0222 msg.c:4476: Test failed: WM_MDICREATE for maximized visible MDI child window: 72: the msg sequence is not complete: expected 0000 - actual 0093 msg.c:4493: Test failed: Destroy visible maximized MDI child window: 78: the msg 0x0086 was expected, but got msg 0x800b instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[0]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[0]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[1]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[1]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[2]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[2]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[3]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[3]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[3]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[4]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[4]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[5]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[5]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[6]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[6]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 7: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6830: Test failed: button[6]: WM_LBUTTONUP on a button: 8: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[7]: WM_SETTEXT on a visible button: 4: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6774: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[7]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg 0x0111 was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[8]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[8]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0138 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 6: the msg sequence is not complete: expected 0000 - actual 0014 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6762: Test failed: BM_SETCHECK on a button: 2: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6762: Test failed: BM_SETCHECK on a button: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 1: the msg 0x0138 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[9]: WM_SETTEXT on a visible button: 3: the msg sequence is not complete: expected 0000 - actual 0138 msg.c:6774: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[9]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6702: Test failed: BM_SETSTYLE on a button: 1: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 2: the msg 0x000f was expected, but got msg 0x8000 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 5: the msg 0x0135 was expected, but got msg 0x000f instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 7: the msg 0x002b was expected, but got msg 0x0014 instead msg.c:6702: Test failed: BM_SETSTYLE on a button: 8: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6717: Test failed: BM_SETSTATE/TRUE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 3: the msg 0x8000 was expected, but got msg 0x800a instead msg.c:6731: Test failed: BM_SETSTATE/FALSE on a button: 4: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 1: the msg 0x0135 was expected, but got msg 0x800c instead msg.c:6766: Test failed: button[10]: WM_SETTEXT on a visible button: 5: the msg sequence is not complete: expected 0000 - actual 0135 msg.c:6774: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6783: Test failed: button[10]: WM_SETTEXT on an invisible button: 1: the msg sequence is not complete: expected 0000 - actual 800c msg.c:6875: Test failed: Mouseclick on a disabled button: 1: the msg 0x00f3 was expected, but got msg 0x0008 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 4: the msg 0x0202 was expected, but got msg 0x00f3 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 5: the msg 0x00f3 was expected, but got msg 0x0135 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 11: the msg 0x0215 was expected, but got msg 0x800a instead msg.c:6875: Test failed: Mouseclick on a disabled button: 12: the msg 0x0111 was expected, but got msg 0x0202 instead msg.c:6875: Test failed: Mouseclick on a disabled button: 13: the msg sequence is not complete: expected 0000 - actual 00f3 msg.c:15163: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 3: the msg 0x002c was expected, but got msg 0x0180 instead msg.c:15163: Test failed: LB_ADDSTRING: 4: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15163: Test failed: LB_ADDSTRING: 5: the msg 0x002c was expected, but got msg 0x8000 instead msg.c:15163: Test failed: LB_ADDSTRING: 6: the msg sequence is not complete: expected 0000 - actual 0180 msg.c:15199: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15206: Test failed: LB_DELETESTRING 0: 4: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15213: Test failed: LB_DELETESTRING 0: 5: the msg sequence is not complete: expected 0000 - actual 8001 msg.c:15246: Test failed: LB_ADDSTRING: 2: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 3: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 4: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 5: the msg 0x0180 was expected, but got msg 0x002c instead msg.c:15246: Test failed: LB_ADDSTRING: 6: the msg 0x0039 was expected, but got msg 0x8000 instead msg.c:15246: Test failed: LB_ADDSTRING: 7: the msg 0x0039 was expected, but got msg 0x0180 instead msg.c:15246: Test failed: LB_ADDSTRING: 8: the msg 0x002c was expected, but got msg 0x0039 instead msg.c:15246: Test failed: LB_ADDSTRING: 9: the msg sequence is not complete: expected 0000 - actual 0039 msg.c:15272: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15272: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15272: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:15298: Test failed: LB_ADDSTRING: 1: the msg 0x0180 was expected, but got msg 0x8000 instead msg.c:15298: Test failed: LB_ADDSTRING: 2: in msg 0x0180 expecting lParam 0xf30604ee got 0xf30604ed msg.c:15298: Test failed: LB_ADDSTRING: 3: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 5: the msg 0x0007 was expected, but got msg 0x8005 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 6: the msg 0x0111 was expected, but got msg 0x0007 instead msg.c:11889: Test failed: SetFocus(hwnd) on an invisible edit: 7: the msg sequence is not complete: expected 0000 - actual 8000 msg.c:12862: Test failed: WmQuitDialogSeq: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:12862: Test failed: WmQuitDialogSeq: 2: the msg 0x0110 was expected, but got msg 0x0030 instead msg.c:12862: Test failed: WmQuitDialogSeq: 4: the msg 0x0004 was expected, but got msg 0x0110 instead msg.c:12862: Test failed: WmQuitDialogSeq: 6: the msg 0x0002 was expected, but got msg 0x0127 instead msg.c:12862: Test failed: WmQuitDialogSeq: 7: the msg 0x0082 was expected, but got msg 0x0011 instead msg.c:12862: Test failed: WmQuitDialogSeq: 8: the msg sequence is not complete: expected 0000 - actual 0004 msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 11: the msg 0x0086 was expected, but got msg 0x0003 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 13: the msg 0x0006 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 14: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 15: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 20: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14484: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 22: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14494: Test failed: SetActiveWindow(hwnd), hwnd not visible: 2: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:14500: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 5: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:18181: Test failed: Restore minimized window: 1: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:13272: Test failed: WmSetWindowRgn_clear: 22: the msg sequence is not complete: expected 0000 - actual 0046 msg.c:14108: Test failed: CreateDialogParam_1: 16: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14108: Test failed: CreateDialogParam_1: 17: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:14108: Test failed: CreateDialogParam_1: 18: the msg 0x0006 was expected, but got msg 0x001c instead msg.c:14108: Test failed: CreateDialogParam_1: 19: the msg 0x0007 was expected, but got msg 0x0086 instead msg.c:14108: Test failed: CreateDialogParam_1: 21: the msg sequence is not complete: expected 0000 - actual 0006 msg.c:14124: Test failed: CreateDialogParam_3: 1: the msg 0x0030 was expected, but got msg 0x8000 instead msg.c:14134: Test failed: CreateDialogParam_4: 19: the msg 0x001c was expected, but got msg 0x0003 instead msg.c:14165: Test failed: ModalDialog2: 14: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14195: Test failed: EndDialog: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14195: Test failed: EndDialog: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14195: Test failed: EndDialog: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 7: the msg 0x0086 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 9: the msg 0x0006 was expected, but got msg 0x0003 instead msg.c:14195: Test failed: EndDialog: 10: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:14195: Test failed: EndDialog: 11: the msg 0x0008 was expected, but got msg 0x0086 instead msg.c:14195: Test failed: EndDialog: 12: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:14195: Test failed: EndDialog: 13: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:14216: Test failed: EndDialog2: 0: the msg 0x000a was expected, but got msg 0x800a instead msg.c:14216: Test failed: EndDialog2: 1: the msg 0x0046 was expected, but got msg 0x000a instead msg.c:14216: Test failed: EndDialog2: 2: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 3: the msg 0x0086 was expected, but got msg 0x0005 instead msg.c:14216: Test failed: EndDialog2: 4: the msg 0x0006 was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog2: 7: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:14216: Test failed: EndDialog2: 8: the msg 0x0008 was expected, but got msg 0x0003 instead msg.c:14216: Test failed: EndDialog2: 9: the msg 0x0007 was expected, but got msg 0x0046 instead msg.c:14216: Test failed: EndDialog2: 10: the msg sequence is not complete: expected 0000 - actual 0009 msg.c:15830: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 14: the msg 0x0005 was expected, but got msg 0x8004 instead msg.c:15839: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 14: the msg 0x0085 was expected, but got msg 0x8004 instead msg.c:17580: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17592: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:17608: Test failed: UpdateLayeredWindow: 0: the msg sequence is not complete: expected 0000 - actual 800b msg.c:10248: Test failed: we didn't ask for events from other threads msg.c:17741: Test failed: TrackPopupMenu: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17763: Test failed: WmTrackPopupMenuAbort: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17776: Test failed: TrackPopupMenuMinimizeWindow: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17788: Test failed: TrackPopupMenuCapture: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:17813: Test failed: TrackPopupMenuEmpty: 1: the msg 0x0211 was expected, but got msg 0x8000 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 0: the msg 0x0215 was expected, but got msg 0x0008 instead msg.c:18088: Test failed: SetCapture( hwnd ) twice: 1: the msg sequence is not complete: expected 0000 - actual 0009
Report validation errors: user32:msg prints too much data (330926 bytes)
=== debiant2 (32 bit Japanese:Japan report) ===
user32: msg.c:14835: Test failed: bad time 71501da
Hm, seems I must have goofed something up. Will check out what went wrong and send a v2.
Hi,
While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=95549
Your paranoid android.
=== debiant2 (32 bit report) ===
user32: menu.c:2337: Test failed: test 25