The game "Imperiums: Greek Wars" depends on this to display its window properly. It also fixes the todo_wine in test_window_placement, along with a few new tests that show exactly the threshold at which the "transition" happens.
Signed-off-by: Gabriel Ivăncescu gabrielopcode@gmail.com --- dlls/user32/tests/win.c | 54 ++++++++++++++++++++++++++++++++--------- dlls/user32/winpos.c | 39 ++++++++++++++++++++++++++++- 2 files changed, 80 insertions(+), 13 deletions(-)
diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c index 228395e..dc3ac71 100644 --- a/dlls/user32/tests/win.c +++ b/dlls/user32/tests/win.c @@ -11624,8 +11624,9 @@ static void test_IsWindowEnabled(void)
static void test_window_placement(void) { - RECT orig = {100, 200, 300, 400}, orig2 = {200, 300, 400, 500}, rect; + RECT orig = {100, 200, 300, 400}, orig2 = {200, 300, 400, 500}, rect, work_rect; WINDOWPLACEMENT wp = {sizeof(wp)}; + MONITORINFO mon_info; HWND hwnd; BOOL ret;
@@ -11633,6 +11634,10 @@ static void test_window_placement(void) orig.left, orig.top, orig.right - orig.left, orig.bottom - orig.top, 0, 0, 0, 0); ok(!!hwnd, "failed to create window, error %u\n", GetLastError());
+ mon_info.cbSize = sizeof(mon_info); + GetMonitorInfoW(MonitorFromWindow(hwnd, MONITOR_DEFAULTTOPRIMARY), &mon_info); + work_rect = mon_info.rcWork; + ret = GetWindowPlacement(hwnd, &wp); ok(ret, "failed to get window placement, error %u\n", GetLastError()); ok(wp.showCmd == SW_SHOWNORMAL, "got show cmd %u\n", wp.showCmd); @@ -11643,6 +11648,42 @@ static void test_window_placement(void) ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", wine_dbgstr_rect(&wp.rcNormalPosition));
+ SetWindowPos(hwnd, 0, work_rect.left, work_rect.top, work_rect.right - work_rect.left, + work_rect.bottom - work_rect.top, SWP_NOZORDER | SWP_NOACTIVATE); + ret = GetWindowPlacement(hwnd, &wp); + ok(ret, "failed to get window placement, error %u\n", GetLastError()); + ok(wp.showCmd == SW_SHOWMAXIMIZED, "got show cmd %u\n", wp.showCmd); + ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, + "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); + ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, + "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); + ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", + wine_dbgstr_rect(&wp.rcNormalPosition)); + + SetWindowPos(hwnd, 0, work_rect.left, work_rect.top, work_rect.right - work_rect.left - 1, + work_rect.bottom - work_rect.top, SWP_NOZORDER | SWP_NOACTIVATE); + ret = GetWindowPlacement(hwnd, &wp); + ok(ret, "failed to get window placement, error %u\n", GetLastError()); + ok(wp.showCmd == SW_SHOWMAXIMIZED, "got show cmd %u\n", wp.showCmd); + ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, + "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); + ok(wp.ptMaxPosition.x == work_rect.left && wp.ptMaxPosition.y == work_rect.top, + "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); + ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", + wine_dbgstr_rect(&wp.rcNormalPosition)); + + SetWindowPos(hwnd, 0, work_rect.left, work_rect.top, work_rect.right - work_rect.left, + work_rect.bottom - work_rect.top - 1, SWP_NOZORDER | SWP_NOACTIVATE); + ret = GetWindowPlacement(hwnd, &wp); + ok(ret, "failed to get window placement, error %u\n", GetLastError()); + ok(wp.showCmd == SW_SHOWMAXIMIZED, "got show cmd %u\n", wp.showCmd); + ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, + "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); + ok(wp.ptMaxPosition.x == work_rect.left && wp.ptMaxPosition.y == work_rect.top, + "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); + ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", + wine_dbgstr_rect(&wp.rcNormalPosition)); + ShowWindow(hwnd, SW_MINIMIZE);
ret = GetWindowPlacement(hwnd, &wp); @@ -11675,7 +11716,6 @@ static void test_window_placement(void) ok(wp.showCmd == SW_SHOWMAXIMIZED, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", @@ -11701,7 +11741,6 @@ todo_wine ok(wp.showCmd == SW_SHOWMINIMIZED, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", @@ -11714,7 +11753,6 @@ todo_wine ok(wp.showCmd == SW_SHOWMAXIMIZED, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", @@ -11727,7 +11765,6 @@ todo_wine ok(wp.showCmd == SW_SHOWNORMAL, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", @@ -11745,7 +11782,6 @@ todo_wine ok(wp.showCmd == SW_SHOWNORMAL, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == 100 && wp.ptMinPosition.y == 100, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig2), "got normal pos %s\n", @@ -11761,7 +11797,6 @@ todo_wine ok(wp.showCmd == SW_SHOWMINIMIZED, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig2), "got normal pos %s\n", @@ -11783,7 +11818,6 @@ todo_wine ok(wp.showCmd == SW_SHOWMINIMIZED, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", @@ -11804,7 +11838,6 @@ todo_wine ok(wp.showCmd == SW_SHOWMAXIMIZED, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == 100 && wp.ptMinPosition.y == 100, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", @@ -11825,7 +11858,6 @@ todo_wine ok(wp.showCmd == SW_SHOWMINIMIZED, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", @@ -11839,7 +11871,6 @@ todo_wine ok(wp.showCmd == SW_SHOWMINIMIZED, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", @@ -11854,7 +11885,6 @@ todo_wine ok(wp.showCmd == SW_NORMAL, "got show cmd %u\n", wp.showCmd); ok(wp.ptMinPosition.x == -32000 && wp.ptMinPosition.y == -32000, "got minimized pos (%d,%d)\n", wp.ptMinPosition.x, wp.ptMinPosition.y); -todo_wine ok(wp.ptMaxPosition.x == -1 && wp.ptMaxPosition.y == -1, "got maximized pos (%d,%d)\n", wp.ptMaxPosition.x, wp.ptMaxPosition.y); ok(EqualRect(&wp.rcNormalPosition, &orig), "got normal pos %s\n", diff --git a/dlls/user32/winpos.c b/dlls/user32/winpos.c index 6e96a4b..f08d6df 100644 --- a/dlls/user32/winpos.c +++ b/dlls/user32/winpos.c @@ -916,6 +916,42 @@ static POINT get_minimized_pos( HWND hwnd, POINT pt ) return pt; }
+static POINT get_maximized_pos( WND *wnd, POINT pos ) +{ + MONITORINFO mon_info; + HMONITOR monitor; + RECT rc_work; + + /* top level windows covering the working area are not set, + to avoid situations where the border style changes and + the window is in the wrong position outside the screen */ + if (!wnd->parent || wnd->parent == GetDesktopWindow()) + { + if (wnd->dwStyle & WS_MAXIMIZE) + { + if ((monitor = MonitorFromWindow( wnd->obj.handle, MONITOR_DEFAULTTOPRIMARY ))) + { + mon_info.cbSize = sizeof(mon_info); + GetMonitorInfoW( monitor, &mon_info ); + rc_work = mon_info.rcMonitor; + + if ((wnd->dwStyle & WS_CAPTION) == WS_CAPTION || !(wnd->dwStyle & (WS_CHILD | WS_POPUP))) + rc_work = mon_info.rcWork; + } + else + SetRect( &rc_work, 0, 0, GetSystemMetrics( SM_CXSCREEN ), GetSystemMetrics( SM_CYSCREEN ) ); + + if (wnd->window_rect.left <= rc_work.left && wnd->window_rect.top <= rc_work.top && + wnd->window_rect.right >= rc_work.right && wnd->window_rect.bottom >= rc_work.bottom) + pos.x = pos.y = -1; + } + else + pos.x = pos.y = -1; + } + + return pos; +} +
/*********************************************************************** * WINPOS_MinMaximize @@ -1337,6 +1373,7 @@ BOOL WINAPI GetWindowPlacement( HWND hwnd, WINDOWPLACEMENT *wndpl ) { pWnd->normal_rect = pWnd->window_rect; } + pWnd->max_pos = get_maximized_pos( pWnd, pWnd->max_pos );
wndpl->length = sizeof(*wndpl); if( pWnd->dwStyle & WS_MINIMIZE ) @@ -1425,7 +1462,7 @@ static BOOL WINPOS_SetPlacement( HWND hwnd, const WINDOWPLACEMENT *wndpl, UINT f if (!pWnd || pWnd == WND_OTHER_PROCESS || pWnd == WND_DESKTOP) return FALSE;
if (flags & PLACE_MIN) pWnd->min_pos = point_thread_to_win_dpi( hwnd, wp.ptMinPosition ); - if (flags & PLACE_MAX) pWnd->max_pos = point_thread_to_win_dpi( hwnd, wp.ptMaxPosition ); + if (flags & PLACE_MAX) pWnd->max_pos = get_maximized_pos( pWnd, point_thread_to_win_dpi( hwnd, wp.ptMaxPosition ) ); if (flags & PLACE_RECT) pWnd->normal_rect = rect_thread_to_win_dpi( hwnd, wp.rcNormalPosition );
style = pWnd->dwStyle;
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=95544
Your paranoid android.
=== w7u_2qxl (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w7u_adm (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w7u_el (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w8 (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w8adm (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w864 (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w1064v1507 (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w1064v1809 (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w1064 (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w1064_tsign (32 bit report) ===
user32: win.c:4073: Test failed: hwnd 00020178/00020178 message 0200 win.c:4077: Test failed: hwnd 00020178/00020178 message 0201 win.c:4086: Test failed: hwnd 0011025A/0011025A message 0202 win.c:4089: Test failed: hwnd 0011025A/0011025A message 0201 win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w10pro64 (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w864 (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w1064v1507 (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w1064v1809 (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w1064 (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w1064_2qxl (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w1064_tsign (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w10pro64 (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w10pro64_ar (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w10pro64_he (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w10pro64_ja (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== w10pro64_zh_CN (64 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,728) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,728) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,727) win.c:11697: Test failed: got normal pos (0,0)-(1024,727) win.c:11709: Test failed: got normal pos (0,0)-(1024,727) win.c:11721: Test failed: got normal pos (0,0)-(1024,727) win.c:11733: Test failed: got normal pos (0,0)-(1024,727) win.c:11746: Test failed: got normal pos (0,0)-(1024,727) win.c:11758: Test failed: got normal pos (0,0)-(1024,727) win.c:11770: Test failed: got normal pos (0,0)-(1024,727)
=== debiant2 (32 bit report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)
=== debiant2 (32 bit Arabic:Morocco report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)
=== debiant2 (32 bit German report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)
=== debiant2 (32 bit French report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)
=== debiant2 (32 bit Hebrew:Israel report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)
=== debiant2 (32 bit Hindi:India report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)
=== debiant2 (32 bit Japanese:Japan report) ===
user32: win.c:10366: Test failed: Expected foreground window 00020054, got 00E300A4 win.c:10376: Test failed: Expected foreground window 00020054, got 00000000 win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)
=== debiant2 (32 bit Chinese:China report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)
=== debiant2 (32 bit WoW report) ===
user32: win.c:10383: Test failed: Expected foreground window 00150128, got 00E400F2 win.c:10385: Test failed: GetActiveWindow() = 00000000 win.c:10385: Test failed: GetFocus() = 00000000 win.c:10386: Test failed: Received WM_ACTIVATEAPP(1), did not expect it. win.c:10387: Test failed: Received WM_ACTIVATEAPP(0), did not expect it. win.c:10395: Test failed: Expected foreground window 00150128, got 00000000 win.c:10397: Test failed: GetActiveWindow() = 00000000 win.c:10397: Test failed: GetFocus() = 00000000 win.c:10405: Test failed: Received WM_ACTIVATEAPP(1), did not expect it. win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)
=== debiant2 (64 bit WoW report) ===
user32: win.c:11655: Test failed: got show cmd 1 win.c:11656: Test failed: got minimized pos (-1,-1) win.c:11660: Test failed: got normal pos (0,0)-(1024,768) win.c:11667: Test failed: got show cmd 1 win.c:11668: Test failed: got minimized pos (-1,-1) win.c:11670: Test failed: got maximized pos (-1,-1) win.c:11672: Test failed: got normal pos (0,0)-(1023,768) win.c:11679: Test failed: got show cmd 1 win.c:11680: Test failed: got minimized pos (-1,-1) win.c:11682: Test failed: got maximized pos (-1,-1) win.c:11684: Test failed: got normal pos (0,0)-(1024,767) win.c:11697: Test failed: got normal pos (0,0)-(1024,767) win.c:11709: Test failed: got normal pos (0,0)-(1024,767) win.c:11721: Test failed: got normal pos (0,0)-(1024,767) win.c:11733: Test failed: got normal pos (0,0)-(1024,767) win.c:11746: Test failed: got normal pos (0,0)-(1024,767) win.c:11758: Test failed: got normal pos (0,0)-(1024,767) win.c:11770: Test failed: got normal pos (0,0)-(1024,767)