d3d8/tests: Mark the hidden test WM_WINDOWPOSCHANGED test flaky.

This commit is contained in:
Stefan Dösinger 2023-09-07 15:21:12 +03:00 committed by Alexandre Julliard
parent b14d7f2fa8
commit 48a4f670d1

View file

@ -3246,7 +3246,12 @@ static void test_wndproc(void)
SetForegroundWindow(GetDesktopWindow());
ok(!expect_messages->message, "Expected message %#x for window %#x, but didn't receive it.\n",
expect_messages->message, expect_messages->window);
/* kwin sometimes resizes hidden windows. The d3d8 version of this test has been reliable on
* Windows so far, but the d3d9 equivalent rarely fails since Windows 8. */
flaky
ok(!windowposchanged_received, "Received WM_WINDOWPOSCHANGED but did not expect it.\n");
expect_messages = NULL;
flush_events();