Rémi Bernon : user32/tests: Update SetActiveWindow(0) test result for w1064v1809.

Alexandre Julliard julliard at winehq.org
Wed Nov 6 16:54:29 CST 2019


Module: wine
Branch: master
Commit: 32b3e502d9752498f54108913346344cf93223e6
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=32b3e502d9752498f54108913346344cf93223e6

Author: Rémi Bernon <rbernon at codeweavers.com>
Date:   Tue Nov  5 20:44:49 2019 +0100

user32/tests: Update SetActiveWindow(0) test result for w1064v1809.

Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/user32/tests/msg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c
index 08a106ee19..43c1859e04 100644
--- a/dlls/user32/tests/msg.c
+++ b/dlls/user32/tests/msg.c
@@ -14218,8 +14218,8 @@ static void test_SetActiveWindow(void)
 
     trace("SetActiveWindow(0)\n");
     ret = SetActiveWindow(0);
-    ok( ret == popup, "Failed to SetActiveWindow(0)\n");
-    ok_sequence(SetActiveWindowSeq0, "SetActiveWindow(0)", FALSE);
+    ok( ret == popup || broken(ret == 0) /* w1064v1809 */, "Failed to SetActiveWindow(0), ret:%p\n", ret);
+    if (ret == popup) ok_sequence(SetActiveWindowSeq0, "SetActiveWindow(0)", FALSE);
     flush_sequence();
 
     trace("SetActiveWindow(hwnd), hwnd visible\n");




More information about the wine-cvs mailing list