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

Alexandre Julliard julliard at winehq.org
Thu Feb 26 09:05:18 CST 2009


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Feb 26 09:45:33 2009 +0100

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

---

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

diff --git a/dlls/twain_32/tests/dsm.c b/dlls/twain_32/tests/dsm.c
index fb438ab..37ebf3b 100644
--- a/dlls/twain_32/tests/dsm.c
+++ b/dlls/twain_32/tests/dsm.c
@@ -579,14 +579,14 @@ START_TEST(dsm)
     htwain = LoadLibraryA("twain_32.dll");
     if (! htwain)
     {
-        skip("twain_32.dll not available, skipping tests\n");
+        win_skip("twain_32.dll not available, skipping tests\n");
         return;
     }
     pDSM_Entry = (void*)GetProcAddress(htwain, "DSM_Entry");
     ok(pDSM_Entry != NULL, "Unable to GetProcAddress DSM_Entry\n");
     if (! pDSM_Entry)
     {
-        skip("DSM_Entry not available, skipping tests\n");
+        win_skip("DSM_Entry not available, skipping tests\n");
         return;
     }
 




More information about the wine-cvs mailing list