Module: wine Branch: master Commit: c3aa03d244f8f0eaa875db763a3e719e7cc7b574 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c3aa03d244f8f0eaa875db763a...
Author: Francois Gouget fgouget@free.fr Date: Mon Feb 23 10:41:30 2009 +0100
secur32/tests: Use win_skip() to skip over unimplemented functionality.
---
dlls/secur32/tests/ntlm.c | 2 +- dlls/secur32/tests/schannel.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/secur32/tests/ntlm.c b/dlls/secur32/tests/ntlm.c index 370a714..43b7265 100644 --- a/dlls/secur32/tests/ntlm.c +++ b/dlls/secur32/tests/ntlm.c @@ -1292,7 +1292,7 @@ START_TEST(ntlm) test_cred_multiple_use(); } else - skip("Needed functions are not available\n"); + win_skip("Needed functions are not available\n");
if(secdll) FreeLibrary(secdll); diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c index 154ba97..167a0b4 100644 --- a/dlls/secur32/tests/schannel.c +++ b/dlls/secur32/tests/schannel.c @@ -173,7 +173,7 @@ static void testAcquireSecurityContext(void) !pEnumerateSecurityPackagesA || !pFreeContextBuffer || !pFreeCredentialsHandle || !pCryptAcquireContextW) { - skip("Needed functions are not available\n"); + win_skip("Needed functions are not available\n"); return; }