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
9ac630e0
Commit
9ac630e0
authored
Jun 29, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jul 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fix a few test failures.
parent
8e729245
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
url.c
dlls/urlmon/tests/url.c
+11
-3
No files found.
dlls/urlmon/tests/url.c
View file @
9ac630e0
...
...
@@ -2194,6 +2194,8 @@ static void test_BindToObject(int protocol, BOOL emul)
SET_EXPECT
(
Start
);
if
(
test_protocol
==
HTTP_TEST
)
SET_EXPECT
(
Terminate
);
if
(
test_protocol
==
FILE_TEST
)
SET_EXPECT
(
OnProgress_MIMETYPEAVAILABLE
);
SET_EXPECT
(
UnlockRequest
);
}
else
{
if
(
test_protocol
==
HTTP_TEST
)
{
...
...
@@ -2260,6 +2262,8 @@ static void test_BindToObject(int protocol, BOOL emul)
CHECK_CALLED
(
Start
);
if
(
test_protocol
==
HTTP_TEST
)
CHECK_CALLED
(
Terminate
);
if
(
test_protocol
==
FILE_TEST
)
CLEAR_CALLED
(
OnProgress_MIMETYPEAVAILABLE
);
/* not called in IE7 */
CHECK_CALLED
(
UnlockRequest
);
}
else
{
if
(
test_protocol
==
HTTP_TEST
)
{
...
...
@@ -2302,9 +2306,13 @@ static void test_BindToObject(int protocol, BOOL emul)
if
(
test_protocol
!=
HTTP_TEST
||
emul
||
urls
[
test_protocol
]
==
SHORT_RESPONSE_URL
)
{
ok
(
IMoniker_Release
(
mon
)
==
0
,
"mon should be destroyed here
\n
"
);
ok
(
IBindCtx_Release
(
bctx
)
==
0
,
"bctx should be destroyed here
\n
"
);
}
else
todo_wine
{
ok
(
IMoniker_Release
(
mon
)
==
0
,
"mon should be destroyed here
\n
"
);
ok
(
IBindCtx_Release
(
bctx
)
==
0
,
"bctx should be destroyed here
\n
"
);
}
else
{
todo_wine
ok
(
IMoniker_Release
(
mon
)
==
0
,
"mon should be destroyed here
\n
"
);
if
(
bindf
&
BINDF_ASYNCHRONOUS
)
ok
(
IBindCtx_Release
(
bctx
)
!=
0
,
"bctx should not be destroyed here
\n
"
);
else
todo_wine
ok
(
IBindCtx_Release
(
bctx
)
==
0
,
"bctx should be destroyed here
\n
"
);
}
if
(
emul
)
...
...
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