[PATCH 0/1] MR7819: ws2_32/tests: Allow socket() for Bluetooth RFCOMM sockets to fail with WSAEPROTONOSUPPORT.
14 Apr
14 Apr
7:19 p.m.
New subject: [PATCH 1/1] ws2_32/tests: Allow socket() for Bluetooth RFCOMM sockets to fail with WSAEPROTONOSUPPORT.
From: Vibhav Pant <vibhavp(a)gmail.com> --- dlls/ws2_32/tests/sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index ff546f10ed3..f8d86950f3c 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -12817,7 +12817,7 @@ static void test_bind_bluetooth(void) err = WSAGetLastError(); if (sock == INVALID_SOCKET) { - ok(err == WSAEAFNOSUPPORT, "got error %d\n", err); + ok(err == WSAEAFNOSUPPORT || err == WSAEPROTONOSUPPORT, "got error %d\n", err); skip("Bluetooth is not supported\n"); return; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7819
249
Age (days ago)
249
Last active (days ago)
1 comments
2 participants
participants (2)
-
Vibhav Pant -
Vibhav Pant (@vibhavp)