Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
3c24481d
Commit
3c24481d
authored
Nov 05, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 06, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Use win_skip() where appropriate.
parent
0ad3537d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
class.c
dlls/user32/tests/class.c
+1
-1
input.c
dlls/user32/tests/input.c
+1
-1
winstation.c
dlls/user32/tests/winstation.c
+1
-1
No files found.
dlls/user32/tests/class.c
View file @
3c24481d
...
...
@@ -1115,7 +1115,7 @@ static void test_IME(void)
if
(
!
GetProcAddress
(
GetModuleHandleA
(
"user32.dll"
),
"BroadcastSystemMessageExA"
))
{
skip
(
"BroadcastSystemMessageExA not available, skipping IME class test
\n
"
);
win_
skip
(
"BroadcastSystemMessageExA not available, skipping IME class test
\n
"
);
return
;
}
...
...
dlls/user32/tests/input.c
View file @
3c24481d
...
...
@@ -1361,7 +1361,7 @@ static void test_GetMouseMovePointsEx(void)
/* Get a valid content for the input struct */
if
(
!
GetCursorPos
(
&
point
))
{
skip
(
"GetCursorPos() failed with error %u
\n
"
,
GetLastError
());
win_
skip
(
"GetCursorPos() failed with error %u
\n
"
,
GetLastError
());
return
;
}
memset
(
&
in
,
0
,
sizeof
(
MOUSEMOVEPOINT
));
...
...
dlls/user32/tests/winstation.c
View file @
3c24481d
...
...
@@ -932,7 +932,7 @@ START_TEST(winstation)
GetProcessWindowStation
();
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
skip
(
"WindowStation calls not supported on this platform
\n
"
);
win_
skip
(
"WindowStation calls not supported on this platform
\n
"
);
return
;
}
...
...
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