user32/tests: Fix cursor state test failures for win10.

Signed-off-by: Ziqing Hui <zhui@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Ziqing Hui 2021-12-07 18:06:42 +08:00 committed by Alexandre Julliard
parent 9596e7f2a4
commit f111327095

View file

@ -2505,7 +2505,7 @@ static void test_ShowCursor(void)
memset( &info, 0, sizeof(info) );
info.cbSize = sizeof(info);
ok( pGetCursorInfo( &info ), "GetCursorInfo failed\n" );
ok( info.flags & CURSOR_SHOWING, "cursor not shown in info\n" );
ok( info.flags & (CURSOR_SHOWING | CURSOR_SUPPRESSED), "Got unexpected cursor state\n" );
}
event_start = CreateEventW( NULL, FALSE, FALSE, NULL );
@ -2529,7 +2529,7 @@ static void test_ShowCursor(void)
info.cbSize = sizeof(info);
ok( pGetCursorInfo( &info ), "GetCursorInfo failed\n" );
/* global show count is not affected since we don't have a window */
ok( info.flags & CURSOR_SHOWING, "cursor not shown in info\n" );
ok( info.flags & (CURSOR_SHOWING | CURSOR_SUPPRESSED), "Got unexpected cursor state\n" );
}
parent_id = 0;
@ -2582,7 +2582,7 @@ static void test_ShowCursor(void)
{
info.cbSize = sizeof(info);
ok( pGetCursorInfo( &info ), "GetCursorInfo failed\n" );
ok( info.flags & CURSOR_SHOWING, "cursor not shown in info\n" );
ok( info.flags & (CURSOR_SHOWING | CURSOR_SUPPRESSED), "Got unexpected cursor state\n" );
}
count = ShowCursor( TRUE );
@ -2594,7 +2594,7 @@ static void test_ShowCursor(void)
{
info.cbSize = sizeof(info);
ok( pGetCursorInfo( &info ), "GetCursorInfo failed\n" );
ok( info.flags & CURSOR_SHOWING, "cursor not shown in info\n" );
ok( info.flags & (CURSOR_SHOWING | CURSOR_SUPPRESSED), "Got unexpected cursor state\n" );
}
}