Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
f1113270
Commit
f1113270
authored
Dec 07, 2021
by
Ziqing Hui
Committed by
Alexandre Julliard
Dec 08, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
>
parent
9596e7f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cursoricon.c
dlls/user32/tests/cursoricon.c
+4
-4
No files found.
dlls/user32/tests/cursoricon.c
View file @
f1113270
...
...
@@ -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
"
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment