From: Andrea Faulds <ajf@ajf.me> It seems to fail on the Windows 10 runners for every MR that touches shell32 and thus triggers the test, but as far as I can tell there is nothing wrong with the test itself, and it does run fine in my Win10 VM. --- dlls/shell32/tests/systray.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dlls/shell32/tests/systray.c b/dlls/shell32/tests/systray.c index 80621761240..4641f3f86bc 100644 --- a/dlls/shell32/tests/systray.c +++ b/dlls/shell32/tests/systray.c @@ -33,6 +33,11 @@ static void test_cbsize(void) NOTIFYICONDATAA nidA; BOOL ret; + /* This test frequently fails with a non-specific E_FAIL on Windows in CI, + * but it does work fine when run standalone, and has no problems in WINE. + */ + flaky_if(!winetest_platform_is_wine); + if (pShell_NotifyIconW) { NOTIFYICONDATAW nidW; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/11716