Rémi Bernon : user32/tests: Update input test result for w1064v1809.

Alexandre Julliard julliard at winehq.org
Wed Oct 23 15:31:32 CDT 2019


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

Author: Rémi Bernon <rbernon at codeweavers.com>
Date:   Wed Oct 23 12:34:07 2019 +0200

user32/tests: Update input 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/input.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c
index d0dc4a8bcf..d768e64cdc 100644
--- a/dlls/user32/tests/input.c
+++ b/dlls/user32/tests/input.c
@@ -1409,7 +1409,9 @@ static void test_mouse_ll_hook(void)
     ok(pt_old.x == 149 && pt_old.y == 149, "Wrong new pos: (%d,%d)\n", pt_old.x, pt_old.y);
     mouse_event(MOUSEEVENTF_MOVE, 0, 0, 0, 0);
     GetCursorPos(&pt_old);
-    ok(pt_old.x == 150 && pt_old.y == 150, "Wrong new pos: (%d,%d)\n", pt_old.x, pt_old.y);
+    ok((pt_old.x == 150 && pt_old.y == 150) ||
+       broken(pt_old.x == 149 && pt_old.y == 149) /* w1064v1809 */,
+       "Wrong new pos: (%d,%d)\n", pt_old.x, pt_old.y);
     mouse_event(MOUSEEVENTF_MOVE, 0, 0, 0, 0);
     GetCursorPos(&pt_old);
     todo_wine




More information about the wine-cvs mailing list