secur32/tests: Fix tests for some 2k machines

André Hentschel nerv at dawncrow.de
Sun Dec 19 18:27:18 CST 2010


---
 dlls/secur32/tests/schannel.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c
index 18a5c1e..b4cb0f8 100644
--- a/dlls/secur32/tests/schannel.c
+++ b/dlls/secur32/tests/schannel.c
@@ -673,7 +673,9 @@ static void test_communication(void)
         buffers[1].pBuffers[0].cbBuffer = buf_size;
     }
 
-    ok(status == SEC_E_OK || broken(status == SEC_E_INVALID_TOKEN) /* WinNT */,
+    ok(status == SEC_E_OK ||
+       broken(status == SEC_E_INVALID_TOKEN) /* WinNT */,
+       broken(status == SEC_E_ILLEGAL_MESSAGE) /* Win2K */,
         "InitializeSecurityContext failed: %08x\n", status);
     if(status != SEC_E_OK) {
         win_skip("Handshake failed\n");
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list