[PATCH] httpapi/tests: Avoid some test failures with newer Windows 10.

Zebediah Figura z.figura12 at gmail.com
Sat Dec 26 16:19:47 CST 2020


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/httpapi/tests/httpapi.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dlls/httpapi/tests/httpapi.c b/dlls/httpapi/tests/httpapi.c
index 5d79197505c..1d1ad56e9f6 100644
--- a/dlls/httpapi/tests/httpapi.c
+++ b/dlls/httpapi/tests/httpapi.c
@@ -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";
-- 
2.29.2




More information about the wine-devel mailing list