From 2be851c955cba142dc306ab5c5405b2f55a50c7f Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Mon, 3 Sep 2018 22:28:39 -0600 Subject: [PATCH] ws2_32/tests: Mark the IPX-not-supported error code test as todo. Signed-off-by: Alex Henrie Signed-off-by: Alexandre Julliard --- dlls/ws2_32/tests/sock.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index b32d1c053df..c058869059f 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -2773,6 +2773,7 @@ static void test_WSASocket(void) if (sock == INVALID_SOCKET) { err = WSAGetLastError(); +todo_wine ok(err == WSAEAFNOSUPPORT || broken(err == WSAEPROTONOSUPPORT), "Expected 10047, received %d\n", err); skip("IPX is not supported\n"); }