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
2544999e
Commit
2544999e
authored
Feb 18, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Skip https tests on IE6.
parent
381bbe1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
protocol.c
dlls/urlmon/tests/protocol.c
+6
-3
No files found.
dlls/urlmon/tests/protocol.c
View file @
2544999e
...
...
@@ -3095,10 +3095,10 @@ static void test_ftp_protocol(void)
trace
(
"Testing ftp protocol...
\n
"
);
init_test
(
FTP_TEST
,
0
);
bindf
=
BINDF_ASYNCHRONOUS
|
BINDF_ASYNCSTORAGE
|
BINDF_PULLDATA
|
BINDF_FROMURLMON
|
BINDF_NOWRITECACHE
;
state
=
STATE_STARTDOWNLOADING
;
tested_protocol
=
FTP_TEST
;
first_data_notif
=
TRUE
;
expect_hrResult
=
E_PENDING
;
hres
=
CoGetClassObject
(
&
CLSID_FtpProtocol
,
CLSCTX_INPROC_SERVER
,
NULL
,
&
IID_IUnknown
,
(
void
**
)
&
unk
);
...
...
@@ -3629,7 +3629,10 @@ START_TEST(protocol)
test_file_protocol
();
test_http_protocol
();
test_https_protocol
();
if
(
pCreateUri
)
test_https_protocol
();
else
win_skip
(
"Skipping https tests on too old platform
\n
"
);
test_ftp_protocol
();
test_gopher_protocol
();
test_mk_protocol
();
...
...
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