Commit 80b8a0b5 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent d5b324e3
...@@ -372,7 +372,7 @@ static void test_appbarget(void) ...@@ -372,7 +372,7 @@ static void test_appbarget(void)
if (!pMonitorFromWindow) if (!pMonitorFromWindow)
{ {
skip("MonitorFromWindow is not available\n"); win_skip("MonitorFromWindow is not available\n");
} }
else else
{ {
......
...@@ -512,7 +512,7 @@ static void test_load_save(void) ...@@ -512,7 +512,7 @@ static void test_load_save(void)
if (!pGetLongPathNameA) if (!pGetLongPathNameA)
{ {
skip("GetLongPathNameA is not available\n"); win_skip("GetLongPathNameA is not available\n");
return; return;
} }
...@@ -655,7 +655,7 @@ static void test_datalink(void) ...@@ -655,7 +655,7 @@ static void test_datalink(void)
"CoCreateInstance failed (0x%08x)\n", r); "CoCreateInstance failed (0x%08x)\n", r);
if (!sl) if (!sl)
{ {
skip("no shelllink\n"); win_skip("no shelllink\n");
return; return;
} }
...@@ -666,7 +666,7 @@ static void test_datalink(void) ...@@ -666,7 +666,7 @@ static void test_datalink(void)
if (!dl) if (!dl)
{ {
skip("no datalink interface\n"); win_skip("no datalink interface\n");
IShellLinkW_Release( sl ); IShellLinkW_Release( sl );
return; return;
} }
......
...@@ -864,7 +864,7 @@ START_TEST(shellpath) ...@@ -864,7 +864,7 @@ START_TEST(shellpath)
{ {
/* Report missing functions once */ /* Report missing functions once */
if (!pSHGetFolderLocation) if (!pSHGetFolderLocation)
skip("SHGetFolderLocation is not available\n"); win_skip("SHGetFolderLocation is not available\n");
/* first test various combinations of parameters: */ /* first test various combinations of parameters: */
testApiParameters(); testApiParameters();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment