schannel/tests: Use win_skip() to skip over unimplemented functionality.

oldstable
Francois Gouget 2009-02-23 23:48:54 +01:00 committed by Alexandre Julliard
parent 44eb0090d7
commit b2f2e53fc8
1 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ START_TEST(main)
{
HMODULE hMod = LoadLibraryA("schannel.dll");
if (!hMod) {
skip("schannel.dll not found.\n");
win_skip("schannel.dll not available\n");
return;
}
@ -189,7 +189,7 @@ START_TEST(main)
testInitialize();
testGetInfo();
}
else skip( "schannel functions not found\n" );
else win_skip( "schannel functions not found\n" );
FreeLibrary(hMod);
}