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
430556ae
Commit
430556ae
authored
Feb 19, 2016
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Feb 20, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msctf/tests: Use todo_wine_if() in tests.
Signed-off-by:
Frédéric Delanoy
<
frederic.delanoy@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7ab21391
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
inputprocessor.c
dlls/msctf/tests/inputprocessor.c
+2
-6
No files found.
dlls/msctf/tests/inputprocessor.c
View file @
430556ae
...
...
@@ -117,9 +117,7 @@ static inline void _sink_fire_ok(INT *sink, const CHAR* name)
*
sink
=
(
*
sink
&
~
SINK_EXPECTED_COUNT_MASK
)
+
(
count
<<
16
);
return
;
default:
if
(
todo
)
todo_wine
winetest_ok
(
0
,
"Unexpected %s sink
\n
"
,
name
);
else
todo_wine_if
(
todo
)
winetest_ok
(
0
,
"Unexpected %s sink
\n
"
,
name
);
}
*
sink
=
SINK_FIRED
;
...
...
@@ -147,9 +145,7 @@ static inline void _sink_check_ok(INT *sink, const CHAR* name)
winetest_trace
(
"optional sink %s not fired
\n
"
,
name
);
break
;
default:
if
(
todo
)
todo_wine
winetest_ok
(
0
,
"%s not fired as expected, in state %x
\n
"
,
name
,
*
sink
);
else
todo_wine_if
(
todo
)
winetest_ok
(
0
,
"%s not fired as expected, in state %x
\n
"
,
name
,
*
sink
);
}
*
sink
=
SINK_UNEXPECTED
;
...
...
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