Paul Vriens : secur32/tests: Use skip when functions are not available.
Module: wine Branch: master Commit: fe7e83fd0cb4d92589dd8485725f611d0df8dfa6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fe7e83fd0cb4d92589dd848572... Author: Paul Vriens <paul.vriens.wine(a)gmail.com> Date: Thu Jul 5 15:18:20 2007 +0200 secur32/tests: Use skip when functions are not available. --- dlls/secur32/tests/ntlm.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/dlls/secur32/tests/ntlm.c b/dlls/secur32/tests/ntlm.c index 435b636..f30f65e 100644 --- a/dlls/secur32/tests/ntlm.c +++ b/dlls/secur32/tests/ntlm.c @@ -1282,7 +1282,9 @@ START_TEST(ntlm) testSignSeal(); test_cred_multiple_use(); - } + } + else + skip("Needed functions are not available\n"); if(secdll) FreeLibrary(secdll);
participants (1)
-
Alexandre Julliard