[PATCH 1/4] user32/tests: Fix cursor state test failures for win10.

Ziqing Hui zhui at codeweavers.com
Tue Dec 7 04:06:42 CST 2021


Signed-off-by: Ziqing Hui <zhui at codeweavers.com>
---
 dlls/user32/tests/cursoricon.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/user32/tests/cursoricon.c b/dlls/user32/tests/cursoricon.c
index 33ca2e3cb63..267aff70fb5 100644
--- a/dlls/user32/tests/cursoricon.c
+++ b/dlls/user32/tests/cursoricon.c
@@ -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" );
     }
 }
 
-- 
2.25.1




More information about the wine-devel mailing list