[PATCH] ws2_32/tests: Cancel a call that currently incorrectly returns STATUS_PENDING.

Zebediah Figura zfigura at codeweavers.com
Wed Feb 9 12:06:52 CST 2022


Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
226207 causes test failures otherwise.

 dlls/ws2_32/tests/afd.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/dlls/ws2_32/tests/afd.c b/dlls/ws2_32/tests/afd.c
index 55029bfd30d..d8a78947de4 100644
--- a/dlls/ws2_32/tests/afd.c
+++ b/dlls/ws2_32/tests/afd.c
@@ -1387,6 +1387,12 @@ static void test_recv(void)
     todo_wine ok(!io.Status, "got %#x\n", io.Status);
     todo_wine ok(io.Information == 1, "got %#Ix\n", io.Information);
     todo_wine ok(buffer[0] == 'a', "got %s\n", debugstr_an(buffer, io.Information));
+    if (ret == STATUS_PENDING)
+    {
+        CancelIo((HANDLE)client);
+        ret = WaitForSingleObject(event, 100);
+        ok(!ret, "wait timed out\n");
+    }
 
     params.msg_flags = AFD_MSG_NOT_OOB | AFD_MSG_PEEK;
 
-- 
2.34.1




More information about the wine-devel mailing list