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
b8ffcbc3
Commit
b8ffcbc3
authored
Apr 19, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Apr 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Fix a test that fails on all systems.
parent
99d3e4c9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
mimeole.c
dlls/inetcomm/tests/mimeole.c
+8
-5
No files found.
dlls/inetcomm/tests/mimeole.c
View file @
b8ffcbc3
...
...
@@ -216,7 +216,6 @@ static void test_CreateMessage(void)
ULONG
count
;
FINDBODY
find_struct
;
HCHARSET
hcs
;
INETCSETINFO
csi
;
char
text
[]
=
"text"
;
HBODY
*
body_list
;
...
...
@@ -274,7 +273,10 @@ static void test_CreateMessage(void)
hr
=
IMimeBody_GetCharset
(
body
,
&
hcs
);
ok
(
hr
==
S_OK
,
"ret %08x
\n
"
,
hr
);
ok
(
hcs
==
NULL
,
"ret %p
\n
"
,
hcs
);
todo_wine
{
ok
(
hcs
!=
NULL
,
"Expected non-NULL charset
\n
"
);
}
IMimeBody_Release
(
body
);
...
...
@@ -309,9 +311,10 @@ static void test_CreateMessage(void)
hr
=
IMimeMessage_GetCharset
(
body
,
&
hcs
);
ok
(
hr
==
S_OK
,
"ret %08x
\n
"
,
hr
);
ok
(
hcs
==
NULL
,
"ret %p
\n
"
,
hcs
);
hr
=
MimeOleGetCharsetInfo
(
hcs
,
&
csi
);
ok
(
hr
==
E_INVALIDARG
,
"ret %08x
\n
"
,
hr
);
todo_wine
{
ok
(
hcs
!=
NULL
,
"Expected non-NULL charset
\n
"
);
}
IMimeMessage_Release
(
msg
);
...
...
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