[PATCH 3/6] user32/tests: Update SetActiveWindow(0) test result for w1064v1809.

Rémi Bernon rbernon at codeweavers.com
Tue Nov 5 13:44:49 CST 2019


Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
---
 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 85cb70a1060..f3854d65cab 100644
--- a/dlls/user32/tests/msg.c
+++ b/dlls/user32/tests/msg.c
@@ -14225,8 +14225,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");
-- 
2.24.0.rc2




More information about the wine-devel mailing list