Module: wine
Branch: master
Commit: 4a7bba9087302102129daff4df987b2cc67f4917
URL: https://gitlab.winehq.org/wine/wine/-/commit/4a7bba9087302102129daff4df987b…
Author: Jinoh Kang <jinoh.kang.kr(a)gmail.com>
Date: Sat Oct 21 20:30:28 2023 +0900
ntdll/tests: Use win_skip() for missing APIs in test_query_process_debug_port_custom_dacl.
A missing API is a todo in Wine.
---
dlls/ntdll/tests/info.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ntdll/tests/info.c b/dlls/ntdll/tests/info.c
index 3b9bad56ea4..3cedca0d6ef 100644
--- a/dlls/ntdll/tests/info.c
+++ b/dlls/ntdll/tests/info.c
@@ -2228,13 +2228,13 @@ static void test_query_process_debug_port_custom_dacl(int argc, char **argv)
if (!pDbgUiSetThreadDebugObject)
{
- skip("DbgUiGetThreadDebugObject not found\n");
+ win_skip("DbgUiGetThreadDebugObject not found\n");
return;
}
if (!pDbgUiGetThreadDebugObject)
{
- skip("DbgUiSetThreadDebugObject not found\n");
+ win_skip("DbgUiSetThreadDebugObject not found\n");
return;
}