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
75187819
Commit
75187819
authored
Sep 08, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Sep 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fix several failing tests with IE7.
parent
1c010e77
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
url.c
dlls/urlmon/tests/url.c
+7
-3
No files found.
dlls/urlmon/tests/url.c
View file @
75187819
...
@@ -2122,7 +2122,8 @@ static void test_BindToStorage(int protocol, BOOL emul, DWORD t)
...
@@ -2122,7 +2122,8 @@ static void test_BindToStorage(int protocol, BOOL emul, DWORD t)
CHECK_CALLED
(
OnProgress_CONNECTING
);
CHECK_CALLED
(
OnProgress_CONNECTING
);
}
else
todo_wine
{
}
else
todo_wine
{
CHECK_NOT_CALLED
(
OnProgress_FINDINGRESOURCE
);
CHECK_NOT_CALLED
(
OnProgress_FINDINGRESOURCE
);
CHECK_NOT_CALLED
(
OnProgress_CONNECTING
);
/* IE7 does call this */
CLEAR_CALLED
(
OnProgress_CONNECTING
);
}
}
}
}
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
FILE_TEST
)
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
FILE_TEST
)
...
@@ -2281,7 +2282,8 @@ static void test_BindToObject(int protocol, BOOL emul)
...
@@ -2281,7 +2282,8 @@ static void test_BindToObject(int protocol, BOOL emul)
CHECK_CALLED
(
Obj_OnProgress_CONNECTING
);
CHECK_CALLED
(
Obj_OnProgress_CONNECTING
);
}
else
todo_wine
{
}
else
todo_wine
{
CHECK_NOT_CALLED
(
Obj_OnProgress_FINDINGRESOURCE
);
CHECK_NOT_CALLED
(
Obj_OnProgress_FINDINGRESOURCE
);
CHECK_NOT_CALLED
(
Obj_OnProgress_CONNECTING
);
/* IE7 does call this */
CLEAR_CALLED
(
Obj_OnProgress_CONNECTING
);
}
}
}
}
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
FILE_TEST
)
{
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
FILE_TEST
)
{
...
@@ -2383,8 +2385,10 @@ static void test_URLDownloadToFile(DWORD prot, BOOL emul)
...
@@ -2383,8 +2385,10 @@ static void test_URLDownloadToFile(DWORD prot, BOOL emul)
CHECK_CALLED
(
QueryInterface_IHttpNegotiate2
);
CHECK_CALLED
(
QueryInterface_IHttpNegotiate2
);
CHECK_CALLED
(
GetRootSecurityId
);
CHECK_CALLED
(
GetRootSecurityId
);
}
}
if
(
test_protocol
==
HTTP_TEST
||
test_protocol
==
FILE_TEST
)
if
(
test_protocol
==
FILE_TEST
)
CHECK_CALLED
(
OnProgress_SENDINGREQUEST
);
CHECK_CALLED
(
OnProgress_SENDINGREQUEST
);
else
if
(
test_protocol
==
HTTP_TEST
)
CLEAR_CALLED
(
OnProgress_SENDINGREQUEST
);
/* not called by IE7 */
if
(
test_protocol
==
HTTP_TEST
)
if
(
test_protocol
==
HTTP_TEST
)
CHECK_CALLED
(
OnResponse
);
CHECK_CALLED
(
OnResponse
);
CHECK_CALLED
(
OnProgress_MIMETYPEAVAILABLE
);
CHECK_CALLED
(
OnProgress_MIMETYPEAVAILABLE
);
...
...
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