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@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4b0c0a6b23
commit
98f2922d2e
|
@ -1460,7 +1460,7 @@ static void test_recv(void)
|
||||||
memset(buffer, 0xcc, sizeof(buffer));
|
memset(buffer, 0xcc, sizeof(buffer));
|
||||||
ret = NtDeviceIoControlFile((HANDLE)client, event, NULL, NULL, &io,
|
ret = NtDeviceIoControlFile((HANDLE)client, event, NULL, NULL, &io,
|
||||||
IOCTL_AFD_RECV, ¶ms, sizeof(params), NULL, 0);
|
IOCTL_AFD_RECV, ¶ms, 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.Status, "got status %#x\n", io.Status);
|
||||||
ok(!io.Information, "got information %#Ix\n", io.Information);
|
ok(!io.Information, "got information %#Ix\n", io.Information);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue