Commit e36e8d4a authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

sti/tests: Use win_skip() for missing APIs.

A missing API is a todo in Wine.
parent d84077c2
...@@ -116,7 +116,7 @@ static void test_version_flag_versus_aw(void) ...@@ -116,7 +116,7 @@ static void test_version_flag_versus_aw(void)
ok(0, "could not create StillImageW, hr = 0x%lX\n", hr); ok(0, "could not create StillImageW, hr = 0x%lX\n", hr);
} }
else else
skip("No StiCreateInstance function\n"); win_skip("No StiCreateInstance function\n");
if (pStiCreateInstanceA) if (pStiCreateInstanceA)
{ {
...@@ -137,7 +137,7 @@ static void test_version_flag_versus_aw(void) ...@@ -137,7 +137,7 @@ static void test_version_flag_versus_aw(void)
todo_wine ok(0, "could not create StillImageA, hr = 0x%lX\n", hr); todo_wine ok(0, "could not create StillImageA, hr = 0x%lX\n", hr);
} }
else else
skip("No StiCreateInstanceA function\n"); win_skip("No StiCreateInstanceA function\n");
if (pStiCreateInstanceW) if (pStiCreateInstanceW)
{ {
...@@ -158,7 +158,7 @@ static void test_version_flag_versus_aw(void) ...@@ -158,7 +158,7 @@ static void test_version_flag_versus_aw(void)
ok(0, "could not create StillImageW, hr = 0x%lX\n", hr); ok(0, "could not create StillImageW, hr = 0x%lX\n", hr);
} }
else else
skip("No StiCreateInstanceW function\n"); win_skip("No StiCreateInstanceW function\n");
} }
static void test_stillimage_aggregation(void) static void test_stillimage_aggregation(void)
...@@ -225,7 +225,7 @@ static void test_stillimage_aggregation(void) ...@@ -225,7 +225,7 @@ static void test_stillimage_aggregation(void)
IUnknown_Release(pUnknown); IUnknown_Release(pUnknown);
} }
else else
skip("No StiCreateInstanceW function\n"); win_skip("No StiCreateInstanceW function\n");
} }
static void test_launch_app_registry(void) static void test_launch_app_registry(void)
...@@ -271,7 +271,7 @@ START_TEST(sti) ...@@ -271,7 +271,7 @@ START_TEST(sti)
FreeLibrary(sti_dll); FreeLibrary(sti_dll);
} }
else else
skip("could not load sti.dll\n"); win_skip("could not load sti.dll\n");
CoUninitialize(); CoUninitialize();
} }
else else
......
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