Bruno Jesus : ws2_32/tests: Mark WinNT result as broken.
Module: wine Branch: master Commit: d77522988ba1950c46704bdb04dd4731a272b420 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d77522988ba1950c46704bdb04... Author: Bruno Jesus <00cpxxx(a)gmail.com> Date: Sun Sep 8 01:47:35 2013 -0300 ws2_32/tests: Mark WinNT result as broken. --- dlls/ws2_32/tests/sock.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dlls/ws2_32/tests/sock.c b/dlls/ws2_32/tests/sock.c index 5d80fca..78521ae 100644 --- a/dlls/ws2_32/tests/sock.c +++ b/dlls/ws2_32/tests/sock.c @@ -1286,8 +1286,10 @@ todo_wine infoA.szProtocol, prottest[i].family, prottest[i].type, prottest[i].proto); todo_wine { - ok(infoA.szProtocol[0], "WSAPROTOCOL_INFOA was not filled\n"); - ok(infoW.szProtocol[0], "WSAPROTOCOL_INFOW was not filled\n"); + ok(infoA.szProtocol[0] || broken(!infoA.szProtocol[0]) /* NT4 */, + "WSAPROTOCOL_INFOA was not filled\n"); + ok(infoW.szProtocol[0] || broken(!infoA.szProtocol[0]) /* NT4 */, + "WSAPROTOCOL_INFOW was not filled\n"); } WideCharToMultiByte(CP_ACP, 0, infoW.szProtocol, -1,
participants (1)
-
Alexandre Julliard