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
669a1b35
Commit
669a1b35
authored
Apr 25, 2013
by
Hans Leidekker
Committed by
Alexandre Julliard
Apr 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Improve error reporting in a couple of tests.
parent
b8e3cee7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
http.c
dlls/wininet/tests/http.c
+3
-3
No files found.
dlls/wininet/tests/http.c
View file @
669a1b35
...
...
@@ -2114,7 +2114,7 @@ static void test_proxy_indirect(int port)
ok
(
hr
!=
NULL
,
"HttpOpenRequest failed
\n
"
);
r
=
HttpSendRequest
(
hr
,
NULL
,
0
,
NULL
,
0
);
ok
(
r
,
"HttpSendRequest failed
\n
"
);
ok
(
r
,
"HttpSendRequest failed
%u
\n
"
,
GetLastError
()
);
sz
=
sizeof
buffer
;
r
=
HttpQueryInfo
(
hr
,
HTTP_QUERY_PROXY_AUTHENTICATE
,
buffer
,
&
sz
,
NULL
);
...
...
@@ -2181,7 +2181,7 @@ static void test_proxy_direct(int port)
ok
(
hr
!=
NULL
,
"HttpOpenRequest failed
\n
"
);
r
=
HttpSendRequest
(
hr
,
NULL
,
0
,
NULL
,
0
);
ok
(
r
,
"HttpSendRequest failed
\n
"
);
ok
(
r
,
"HttpSendRequest failed
%u
\n
"
,
GetLastError
()
);
test_status_code
(
hr
,
407
);
...
...
@@ -2401,7 +2401,7 @@ static void test_proxy_direct(int port)
ok
(
sz
==
lstrlenW
(
passwordW
),
"got %u
\n
"
,
sz
);
r
=
HttpSendRequest
(
hr
,
NULL
,
0
,
NULL
,
0
);
ok
(
r
,
"HttpSendRequest failed
\n
"
);
ok
(
r
,
"HttpSendRequest failed
%u
\n
"
,
GetLastError
()
);
sz
=
sizeof
buffer
;
r
=
HttpQueryInfo
(
hr
,
HTTP_QUERY_STATUS_CODE
,
buffer
,
&
sz
,
NULL
);
ok
(
r
,
"HttpQueryInfo failed
\n
"
);
...
...
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