Commit 7dadc7d4 authored by Esme Povirk's avatar Esme Povirk Committed by Alexandre Julliard

user32/tests: Mark an occasional Windows behavior as broken.

parent 88c1ef97
...@@ -19488,7 +19488,8 @@ static LRESULT CALLBACK insendmessage_wnd_proc( HWND hwnd, UINT msg, WPARAM wp, ...@@ -19488,7 +19488,8 @@ static LRESULT CALLBACK insendmessage_wnd_proc( HWND hwnd, UINT msg, WPARAM wp,
ret = ReplyMessage( msg ); ret = ReplyMessage( msg );
ok( ret, "ReplyMessage failed err %lu\n", GetLastError() ); ok( ret, "ReplyMessage failed err %lu\n", GetLastError() );
flags = InSendMessageEx( NULL ); flags = InSendMessageEx( NULL );
ok( flags == (ISMEX_SEND | ISMEX_REPLIED), "wrong flags %lx\n", flags ); ok( flags == (ISMEX_SEND | ISMEX_REPLIED) || broken( flags == (ISMEX_NOTIFY | ISMEX_REPLIED) ),
"wrong flags %lx\n", flags );
ok( InSendMessage(), "InSendMessage returned false\n" ); ok( InSendMessage(), "InSendMessage returned false\n" );
break; break;
case WM_USER + 1: case WM_USER + 1:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment