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
cdda92fc
Commit
cdda92fc
authored
Feb 10, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 11, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3/tests: Simplify a couple of tests using todo_wine_if().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
780ebcc7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
saxreader.c
dlls/msxml3/tests/saxreader.c
+1
-3
schema.c
dlls/msxml3/tests/schema.c
+1
-4
No files found.
dlls/msxml3/tests/saxreader.c
View file @
cdda92fc
...
...
@@ -2867,9 +2867,7 @@ static void test_saxreader_encoding(void)
CloseHandle
(
file
);
hr
=
ISAXXMLReader_parseURL
(
reader
,
testXmlW
);
if
(
entry
->
todo
)
todo_wine
ok
(
hr
==
entry
->
hr
,
"Expected 0x%08x, got 0x%08x. CLSID %s
\n
"
,
entry
->
hr
,
hr
,
entry
->
clsid
);
else
todo_wine_if
(
entry
->
todo
)
ok
(
hr
==
entry
->
hr
,
"Expected 0x%08x, got 0x%08x. CLSID %s
\n
"
,
entry
->
hr
,
hr
,
entry
->
clsid
);
DeleteFileA
(
testXmlA
);
...
...
dlls/msxml3/tests/schema.c
View file @
cdda92fc
...
...
@@ -1322,10 +1322,7 @@ static void test_XDR_datatypes(void)
hr
=
IXMLDOMNode_get_nodeTypedValue
(
node
,
&
v
);
EXPECT_HR
(
hr
,
S_OK
);
if
(
ptr
->
todo
)
todo_wine
ok
(
V_VT
(
&
v
)
==
ptr
->
type_schema
,
"%s: got variant type %i
\n
"
,
ptr
->
query
,
V_VT
(
&
v
));
else
todo_wine_if
(
ptr
->
todo
)
ok
(
V_VT
(
&
v
)
==
ptr
->
type_schema
,
"%s: got variant type %i
\n
"
,
ptr
->
query
,
V_VT
(
&
v
));
switch
(
ptr
->
type_schema
)
...
...
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