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
41dfe7cc
Commit
41dfe7cc
authored
Dec 26, 2020
by
Zebediah Figura
Committed by
Alexandre Julliard
Dec 28, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
httpapi/tests: Avoid some test failures with newer Windows 10.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b01337e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
httpapi.c
dlls/httpapi/tests/httpapi.c
+3
-4
No files found.
dlls/httpapi/tests/httpapi.c
View file @
41dfe7cc
...
...
@@ -304,7 +304,7 @@ static void test_v1_server(void)
ok
(
req
->
BytesReceived
==
strlen
(
req_text
),
"Got %s bytes.
\n
"
,
wine_dbgstr_longlong
(
req
->
BytesReceived
));
ok
(
!
req
->
EntityChunkCount
,
"Got %u entity chunks.
\n
"
,
req
->
EntityChunkCount
);
ok
(
!
req
->
pEntityChunks
,
"Got entity chunks %p.
\n
"
,
req
->
pEntityChunks
);
ok
(
!
req
->
RawConnectionId
,
"Got SSL connection ID %s.
\n
"
,
wine_dbgstr_longlong
(
req
->
RawConnectionId
));
/* req->RawConnectionId is zero until Win10 2004. */
ok
(
!
req
->
pSslInfo
,
"Got SSL info %p.
\n
"
,
req
->
pSslInfo
);
response
.
StatusCode
=
418
;
...
...
@@ -1372,10 +1372,9 @@ static void test_v2_server(void)
ok
(
req
->
BytesReceived
==
strlen
(
req_text
),
"Got %s bytes.
\n
"
,
wine_dbgstr_longlong
(
req
->
BytesReceived
));
ok
(
!
req
->
EntityChunkCount
,
"Got %u entity chunks.
\n
"
,
req
->
EntityChunkCount
);
ok
(
!
req
->
pEntityChunks
,
"Got entity chunks %p.
\n
"
,
req
->
pEntityChunks
);
ok
(
!
req
->
RawConnectionId
,
"Got SSL connection ID %s.
\n
"
,
wine_dbgstr_longlong
(
req
->
RawConnectionId
));
/* req->RawConnectionId is zero until Win10 2004. */
ok
(
!
req
->
pSslInfo
,
"Got SSL info %p.
\n
"
,
req
->
pSslInfo
);
ok
(
!
reqv2
->
RequestInfoCount
,
"Got request info count %u.
\n
"
,
reqv2
->
RequestInfoCount
);
ok
(
!
reqv2
->
pRequestInfo
,
"Got request info %p.
\n
"
,
reqv2
->
pRequestInfo
);
/* RequestInfoCount and pRequestInfo are zero until Win10 1909. */
response
.
s
.
StatusCode
=
418
;
response
.
s
.
pReason
=
"I'm a teapot"
;
...
...
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