Skip to content
Snippets Groups Projects
Commit 2ba55819 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard
Browse files

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

parent e7800f2a
No related branches found
No related tags found
No related merge requests found
...@@ -579,14 +579,14 @@ START_TEST(dsm) ...@@ -579,14 +579,14 @@ START_TEST(dsm)
htwain = LoadLibraryA("twain_32.dll"); htwain = LoadLibraryA("twain_32.dll");
if (! htwain) if (! htwain)
{ {
skip("twain_32.dll not available, skipping tests\n"); win_skip("twain_32.dll not available, skipping tests\n");
return; return;
} }
pDSM_Entry = (void*)GetProcAddress(htwain, "DSM_Entry"); pDSM_Entry = (void*)GetProcAddress(htwain, "DSM_Entry");
ok(pDSM_Entry != NULL, "Unable to GetProcAddress DSM_Entry\n"); ok(pDSM_Entry != NULL, "Unable to GetProcAddress DSM_Entry\n");
if (! pDSM_Entry) if (! pDSM_Entry)
{ {
skip("DSM_Entry not available, skipping tests\n"); win_skip("DSM_Entry not available, skipping tests\n");
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment