Module: wine Branch: master Commit: 2be851c955cba142dc306ab5c5405b2f55a50c7f URL: https://source.winehq.org/git/wine.git/?a=commit;h=2be851c955cba142dc306ab5c... Author: Alex Henrie <alexhenrie24(a)gmail.com> Date: Mon Sep 3 22:28:39 2018 -0600 ws2_32/tests: Mark the IPX-not-supported error code test as todo. Signed-off-by: Alex Henrie <alexhenrie24(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- 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 b32d1c0..c058869 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"); }