Commit a8a2ca72 authored by Alexandre Julliard's avatar Alexandre Julliard

ws2_32/tests: Fix a test failure on WinME.

parent 950ad4ef
......@@ -852,7 +852,8 @@ static void Exit (void)
ok ( ret == 0, "WSACleanup failed ret = %d GetLastError is %d\n", ret, err);
ret = WSACleanup();
err = WSAGetLastError();
ok ( ret == SOCKET_ERROR && err == WSANOTINITIALISED,
ok ( (ret == SOCKET_ERROR && err == WSANOTINITIALISED) ||
broken(ret == 0), /* WinME */
"WSACleanup returned %d GetLastError is %d\n", ret, err);
}
......
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