fusion/tests: Use win_skip() to skip over unimplemented functionality.
diff --git a/dlls/fusion/tests/asmcache.c b/dlls/fusion/tests/asmcache.c index cd55afa..2fe84ec 100644 --- a/dlls/fusion/tests/asmcache.c +++ b/dlls/fusion/tests/asmcache.c
@@ -759,14 +759,14 @@ hmscoree = LoadLibraryA("mscoree.dll"); if (!hmscoree) { - skip("mscoree.dll not available\n"); + win_skip("mscoree.dll not available\n"); return FALSE; } pLoadLibraryShim = (void *)GetProcAddress(hmscoree, "LoadLibraryShim"); if (!pLoadLibraryShim) { - skip("LoadLibraryShim not available\n"); + win_skip("LoadLibraryShim not available\n"); FreeLibrary(hmscoree); return FALSE; } @@ -774,7 +774,7 @@ hr = pLoadLibraryShim(szFusion, NULL, NULL, &hfusion); if (FAILED(hr)) { - skip("fusion.dll not available\n"); + win_skip("fusion.dll not available\n"); FreeLibrary(hmscoree); return FALSE; } @@ -784,7 +784,7 @@ if (!pCreateAssemblyCache || !pGetCachePath) { - skip("fusion.dll not implemented\n"); + win_skip("fusion.dll not implemented\n"); return FALSE; }
diff --git a/dlls/fusion/tests/asmenum.c b/dlls/fusion/tests/asmenum.c index 921ddf8..54c1340 100644 --- a/dlls/fusion/tests/asmenum.c +++ b/dlls/fusion/tests/asmenum.c
@@ -52,14 +52,14 @@ hmscoree = LoadLibraryA("mscoree.dll"); if (!hmscoree) { - skip("mscoree.dll not available\n"); + win_skip("mscoree.dll not available\n"); return FALSE; } pLoadLibraryShim = (void *)GetProcAddress(hmscoree, "LoadLibraryShim"); if (!pLoadLibraryShim) { - skip("LoadLibraryShim not available\n"); + win_skip("LoadLibraryShim not available\n"); FreeLibrary(hmscoree); return FALSE; } @@ -67,7 +67,7 @@ hr = pLoadLibraryShim(szFusion, NULL, NULL, &hfusion); if (FAILED(hr)) { - skip("fusion.dll not available\n"); + win_skip("fusion.dll not available\n"); FreeLibrary(hmscoree); return FALSE; } @@ -79,7 +79,7 @@ if (!pCreateAssemblyEnum || !pCreateAssemblyNameObject || !pGetCachePath) { - skip("fusion.dll not implemented\n"); + win_skip("fusion.dll not implemented\n"); return FALSE; }
diff --git a/dlls/fusion/tests/asmname.c b/dlls/fusion/tests/asmname.c index b63e6b2..a926b87 100644 --- a/dlls/fusion/tests/asmname.c +++ b/dlls/fusion/tests/asmname.c
@@ -777,7 +777,7 @@ { if (!init_functionpointers()) { - skip("fusion.dll not available\n"); + win_skip("fusion.dll not available\n"); return; }
diff --git a/dlls/fusion/tests/fusion.c b/dlls/fusion/tests/fusion.c index be3da41..6ebd455 100644 --- a/dlls/fusion/tests/fusion.c +++ b/dlls/fusion/tests/fusion.c
@@ -48,14 +48,14 @@ hmscoree = LoadLibraryA("mscoree.dll"); if (!hmscoree) { - skip("mscoree.dll not available\n"); + win_skip("mscoree.dll not available\n"); return FALSE; } pLoadLibraryShim = (void *)GetProcAddress(hmscoree, "LoadLibraryShim"); if (!pLoadLibraryShim) { - skip("LoadLibraryShim not available\n"); + win_skip("LoadLibraryShim not available\n"); FreeLibrary(hmscoree); return FALSE; } @@ -65,7 +65,7 @@ hr = pLoadLibraryShim(szFusion, NULL, NULL, &hfusion); if (FAILED(hr)) { - skip("fusion.dll not available\n"); + win_skip("fusion.dll not available\n"); FreeLibrary(hmscoree); return FALSE; } @@ -91,7 +91,7 @@ if (!pGetCachePath) { - skip("GetCachePath not implemented\n"); + win_skip("GetCachePath not implemented\n"); return; }