From: Francois Gouget fgouget@codeweavers.com
Wine-Bug: https://bugs.winehq.org//show_bug.cgi?id=50097 --- dlls/comctl32/tests/monthcal.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/comctl32/tests/monthcal.c b/dlls/comctl32/tests/monthcal.c index fcafb790302..0abbcd9764d 100644 --- a/dlls/comctl32/tests/monthcal.c +++ b/dlls/comctl32/tests/monthcal.c @@ -2051,6 +2051,7 @@ static void test_sel_notify(void) got_MCN_SELECT = got_MCN_SELCHANGE = FALSE; SendMessageA(hwnd, WM_LBUTTONDOWN, 0, MAKELPARAM(mchit.pt.x, mchit.pt.y)); if (styles[i].val & MCS_MULTISELECT) + flaky_if(i == 3) ok(got_MCN_SELCHANGE, "%d: MCN_SELCHANGE should be sent\n", i); else ok(!got_MCN_SELCHANGE, "%d: MCN_SELCHANGE should not be sent\n", i); @@ -2060,6 +2061,7 @@ static void test_sel_notify(void) if (styles[i].val & MCS_MULTISELECT) ok(!got_MCN_SELCHANGE, "%d: MCN_SELCHANGE should not be sent\n", i); else + flaky_if(i == 2) ok(got_MCN_SELCHANGE, "%d: MCN_SELCHANGE should be sent\n", i); ok(got_MCN_SELECT, "%d: MCN_SELECT should be sent\n", i); DestroyWindow(hwnd);