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
0b49495b
Commit
0b49495b
authored
Aug 04, 2016
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 04, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon/tests: Make use of todo_wine_if().
Signed-off-by:
Michael Stefaniuc
<
mstefani@redhat.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c80ba538
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
9 deletions
+3
-9
protocol.c
dlls/urlmon/tests/protocol.c
+1
-3
url.c
dlls/urlmon/tests/url.c
+2
-6
No files found.
dlls/urlmon/tests/protocol.c
View file @
0b49495b
...
...
@@ -2574,9 +2574,7 @@ static void test_file_protocol_url(LPCWSTR url)
hres
=
IInternetProtocol_UnlockRequest
(
protocol
);
ok
(
hres
==
S_OK
,
"UnlockRequest failed: %08x
\n
"
,
hres
);
hres
=
IInternetProtocol_Read
(
protocol
,
buf
,
2
,
&
cb
);
if
(
file_with_hash
)
/* FIXME: An effect of UnlockRequest call? */
todo_wine
ok
(
hres
==
S_OK
,
"Read failed: %08x
\n
"
,
hres
);
else
todo_wine_if
(
file_with_hash
)
/* FIXME: An effect of UnlockRequest call? */
ok
(
hres
==
S_OK
,
"Read failed: %08x
\n
"
,
hres
);
hres
=
IInternetProtocol_Terminate
(
protocol
,
0
);
ok
(
hres
==
S_OK
,
"Terminate failed: %08x
\n
"
,
hres
);
...
...
dlls/urlmon/tests/url.c
View file @
0b49495b
...
...
@@ -3087,14 +3087,10 @@ static void test_BindToStorage(int protocol, DWORD flags, DWORD t)
if
(
!
no_callback
)
{
CLEAR_CALLED
(
QueryInterface_IBindStatusCallbackEx
);
/* IE 8 */
CHECK_CALLED
(
GetBindInfo
);
if
(
abort_start
)
todo_wine
CHECK_CALLED
(
QueryInterface_IInternetProtocol
);
else
todo_wine_if
(
abort_start
)
CHECK_CALLED
(
QueryInterface_IInternetProtocol
);
if
(
!
emulate_protocol
)
{
if
(
abort_start
)
todo_wine
CHECK_CALLED
(
QueryService_IInternetProtocol
);
else
todo_wine_if
(
abort_start
)
CHECK_CALLED
(
QueryService_IInternetProtocol
);
}
CHECK_CALLED
(
OnStartBinding
);
...
...
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