A missing API is a todo in Wine.
From: Francois Gouget fgouget@codeweavers.com
A missing API is a todo in Wine. --- dlls/iphlpapi/tests/iphlpapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/iphlpapi/tests/iphlpapi.c b/dlls/iphlpapi/tests/iphlpapi.c index b8fa82d2a56..5301a409126 100644 --- a/dlls/iphlpapi/tests/iphlpapi.c +++ b/dlls/iphlpapi/tests/iphlpapi.c @@ -1932,7 +1932,7 @@ static void test_AllocateAndGetTcpExTableFromStack(void)
if (!pAllocateAndGetTcpExTableFromStack) { - skip("AllocateAndGetTcpExTableFromStack not available\n"); + win_skip("AllocateAndGetTcpExTableFromStack not available\n"); return; }
From: Francois Gouget fgouget@codeweavers.com
A missing API is a todo in Wine. --- dlls/ws2_32/tests/protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ws2_32/tests/protocol.c b/dlls/ws2_32/tests/protocol.c index b0259cfe47d..91356c43f7c 100644 --- a/dlls/ws2_32/tests/protocol.c +++ b/dlls/ws2_32/tests/protocol.c @@ -2881,7 +2881,7 @@ static void test_WSCGetProviderInfo(void)
if (!pWSCGetProviderInfo) { - skip("WSCGetProviderInfo is not available.\n"); + win_skip("WSCGetProviderInfo is not available.\n"); return; }
From: Francois Gouget fgouget@codeweavers.com
A missing API is a todo in Wine. --- dlls/wtsapi32/tests/wtsapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/wtsapi32/tests/wtsapi.c b/dlls/wtsapi32/tests/wtsapi.c index 2023a21e938..396a3f4b1e7 100644 --- a/dlls/wtsapi32/tests/wtsapi.c +++ b/dlls/wtsapi32/tests/wtsapi.c @@ -157,7 +157,7 @@ static void test_WTSEnumerateProcessesW(void)
if (!pWTSEnumerateProcessesExW) { - skip("WTSEnumerateProcessesEx is not available\n"); + win_skip("WTSEnumerateProcessesEx is not available\n"); return; }
From: Francois Gouget fgouget@codeweavers.com
A missing dll is a todo in Wine. --- dlls/wintab32/tests/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/wintab32/tests/context.c b/dlls/wintab32/tests/context.c index 4359412785a..e16165c26b5 100644 --- a/dlls/wintab32/tests/context.c +++ b/dlls/wintab32/tests/context.c @@ -211,7 +211,7 @@ START_TEST(context)
if (!hWintab) { - skip("Wintab32.dll not available\n"); + win_skip("Wintab32.dll not available\n"); return; }
This merge request was approved by Huw Davies.