From 4a7bba9087302102129daff4df987b2cc67f4917 Mon Sep 17 00:00:00 2001 From: Jinoh Kang Date: Sat, 21 Oct 2023 20:30:28 +0900 Subject: [PATCH] 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; } -- 2.11.4.GIT