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
d8c92b62
Commit
d8c92b62
authored
May 01, 2013
by
Hans Leidekker
Committed by
Alexandre Julliard
May 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Skip proxy tests on broken wininet.
parent
52ef52e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
http.c
dlls/wininet/tests/http.c
+7
-1
No files found.
dlls/wininet/tests/http.c
View file @
d8c92b62
...
...
@@ -2193,7 +2193,12 @@ static void test_proxy_direct(int port)
ok
(
hr
!=
NULL
,
"HttpOpenRequest failed
\n
"
);
r
=
HttpSendRequest
(
hr
,
NULL
,
0
,
NULL
,
0
);
ok
(
r
,
"HttpSendRequest failed %u
\n
"
,
GetLastError
());
ok
(
r
||
broken
(
!
r
),
"HttpSendRequest failed %u
\n
"
,
GetLastError
());
if
(
!
r
)
{
win_skip
(
"skipping proxy tests on broken wininet
\n
"
);
goto
done
;
}
test_status_code
(
hr
,
407
);
...
...
@@ -2419,6 +2424,7 @@ static void test_proxy_direct(int port)
ok
(
r
,
"HttpQueryInfo failed
\n
"
);
ok
(
!
strcmp
(
buffer
,
"200"
),
"proxy code wrong
\n
"
);
done:
InternetCloseHandle
(
hr
);
InternetCloseHandle
(
hc
);
InternetCloseHandle
(
hi
);
...
...
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