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

Alexandre Julliard julliard at winehq.org
Tue Feb 24 10:21:12 CST 2009


Module: wine
Branch: master
Commit: b2f2e53fc87a7dcff9ac6f2c6808751509cdbb78
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b2f2e53fc87a7dcff9ac6f2c6808751509cdbb78

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Feb 23 23:48:54 2009 +0100

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

---

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

diff --git a/dlls/schannel/tests/main.c b/dlls/schannel/tests/main.c
index 9492a97..ddfffc4 100644
--- a/dlls/schannel/tests/main.c
+++ b/dlls/schannel/tests/main.c
@@ -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);
 }




More information about the wine-cvs mailing list