Commit 0d965c14 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

ws2_32/tests: Add broken for a WSALookupServiceBegin test in NT.

parent 290cd163
...@@ -7381,7 +7381,8 @@ todo_wine ...@@ -7381,7 +7381,8 @@ todo_wine
ok(ret == SOCKET_ERROR, "WSALookupServiceBeginW should have failed\n"); ok(ret == SOCKET_ERROR, "WSALookupServiceBeginW should have failed\n");
todo_wine todo_wine
ok(error == WSAEINVAL ok(error == WSAEINVAL
|| broken(error == ERROR_INVALID_PARAMETER) /* <= XP */ || broken(error == ERROR_INVALID_PARAMETER) /* == XP */
|| broken(error == WSAEFAULT) /* == NT */
|| broken(error == WSASERVICE_NOT_FOUND) /* == 2000 */, || broken(error == WSASERVICE_NOT_FOUND) /* == 2000 */,
"expected 10022, got %d\n", error); "expected 10022, got %d\n", error);
...@@ -7399,7 +7400,7 @@ todo_wine ...@@ -7399,7 +7400,7 @@ todo_wine
error = WSAGetLastError(); error = WSAGetLastError();
if(ret && error == ERROR_INVALID_PARAMETER) if(ret && error == ERROR_INVALID_PARAMETER)
{ {
win_skip("the current WSALookupServiceBeginW test is not supported in win 2000\n"); win_skip("the current WSALookupServiceBeginW test is not supported in win <= 2000\n");
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment