Francois Gouget : ws2_32/tests: Remove the todo_wine on a test_recv() ok() call.

Alexandre Julliard julliard at winehq.org
Thu Feb 17 15:33:59 CST 2022


Module: wine
Branch: master
Commit: 98f2922d2e1ce640727c195ebbd2a7101264d092
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=98f2922d2e1ce640727c195ebbd2a7101264d092

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Thu Feb 17 16:29:58 2022 +0100

ws2_32/tests: Remove the todo_wine on a test_recv() ok() call.

This test has been succeeding ever since the try_recv() call has
been removed before the server call in sock_recv().

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ws2_32/tests/afd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ws2_32/tests/afd.c b/dlls/ws2_32/tests/afd.c
index d8a78947de4..befd9fc702e 100644
--- a/dlls/ws2_32/tests/afd.c
+++ b/dlls/ws2_32/tests/afd.c
@@ -1460,7 +1460,7 @@ static void test_recv(void)
     memset(buffer, 0xcc, sizeof(buffer));
     ret = NtDeviceIoControlFile((HANDLE)client, event, NULL, NULL, &io,
             IOCTL_AFD_RECV, &params, sizeof(params), NULL, 0);
-    todo_wine ok(ret == STATUS_PIPE_DISCONNECTED, "got %#x\n", ret);
+    ok(ret == STATUS_PIPE_DISCONNECTED, "got %#x\n", ret);
     ok(!io.Status, "got status %#x\n", io.Status);
     ok(!io.Information, "got information %#Ix\n", io.Information);
 




More information about the wine-cvs mailing list