user32/tests: Update input test result for w1064v1809.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e798001f86
commit
96f0d1ae7d
|
@ -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);
|
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);
|
mouse_event(MOUSEEVENTF_MOVE, 0, 0, 0, 0);
|
||||||
GetCursorPos(&pt_old);
|
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);
|
mouse_event(MOUSEEVENTF_MOVE, 0, 0, 0, 0);
|
||||||
GetCursorPos(&pt_old);
|
GetCursorPos(&pt_old);
|
||||||
todo_wine
|
todo_wine
|
||||||
|
|
Loading…
Reference in New Issue