Module: wine Branch: master Commit: fc5bb4deef2127b0ecd57078c45bbfe82db9d6f5 URL: https://gitlab.winehq.org/wine/wine/-/commit/fc5bb4deef2127b0ecd57078c45bbfe...
Author: Francois Gouget fgouget@codeweavers.com Date: Sat Oct 1 10:39:11 2022 +0200
d3d9/tests: Mark the test_cursor_pos() tests failing randomly on Windows as flaky.
Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=53194
---
dlls/d3d9/tests/device.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/d3d9/tests/device.c b/dlls/d3d9/tests/device.c index dbdce1e5871..9fe05625190 100644 --- a/dlls/d3d9/tests/device.c +++ b/dlls/d3d9/tests/device.c @@ -5287,6 +5287,7 @@ static void test_cursor_pos(void) ok(ret, "Failed to set cursor position.\n"); flush_events();
+ flaky ok((!expect_pos->x && !expect_pos->y) || broken(expect_pos - points == 7), "Didn't receive MOUSEMOVE %u (%ld, %ld).\n", (unsigned)(expect_pos - points), expect_pos->x, expect_pos->y);