Module: wine Branch: master Commit: 9d538e43bee43a73f0cc392916c6a5af772dc4e7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9d538e43bee43a73f0cc392916...
Author: Dmitry Timoshkov dmitry@baikal.ru Date: Tue Feb 7 23:55:08 2012 +0800
user32: Make FlashWindowEx tests pass under Windows.
---
dlls/user32/tests/win.c | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c index 34f13ce..4f343da 100644 --- a/dlls/user32/tests/win.c +++ b/dlls/user32/tests/win.c @@ -6710,7 +6710,7 @@ static void test_FlashWindowEx(void)
SetLastError(0xdeadbeef); ret = pFlashWindowEx(&finfo); - todo_wine ok(!ret, "FlashWindowEx succeeded\n"); + todo_wine ok(!ret, "previous window state should not be active\n");
finfo.cbSize = sizeof(FLASHWINFO) - 1; SetLastError(0xdeadbeef); @@ -6750,7 +6750,7 @@ static void test_FlashWindowEx(void)
SetLastError(0xdeadbeef); ret = pFlashWindowEx(&finfo); - todo_wine ok(!ret, "FlashWindowEx succeeded\n"); + ok(ret, "previous window state should be active\n");
ok(finfo.cbSize == sizeof(FLASHWINFO), "FlashWindowEx modified cdSize to %x\n", finfo.cbSize); ok(finfo.hwnd == hwnd, "FlashWindowEx modified hwnd to %p\n", finfo.hwnd); @@ -6761,7 +6761,8 @@ static void test_FlashWindowEx(void) finfo.dwFlags = FLASHW_STOP; SetLastError(0xdeadbeef); ret = pFlashWindowEx(&finfo); - ok(ret, "FlashWindowEx failed with %d\n", GetLastError()); +todo_wine + ok(!ret, "previous window state should not be active\n");
DestroyWindow( hwnd ); }