From 40ea0811982ca7faaf4d243128e793a986d29649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sun, 12 Jan 2025 20:01:20 +0100 Subject: [PATCH] [KMTESTS] Temporarily disable the debugger disable/reenable tests (#7424) They will be re-enabled ONCE our KDBG and KDCOM dlls correctly support disabling and re-enabling. --- modules/rostests/kmtests/ntos_kd/NtSystemDebugControl.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/rostests/kmtests/ntos_kd/NtSystemDebugControl.c b/modules/rostests/kmtests/ntos_kd/NtSystemDebugControl.c index 021fc6b0fcf..352ed6c9f57 100644 --- a/modules/rostests/kmtests/ntos_kd/NtSystemDebugControl.c +++ b/modules/rostests/kmtests/ntos_kd/NtSystemDebugControl.c @@ -180,6 +180,11 @@ START_TEST(NtSystemDebugControl) * the next tests are going to change its state */ WasDebuggerEnabled = SharedUserData->KdDebuggerEnabled; +// +// FIXME: Re-enable ONCE our KDBG and KDCOM dlls support disabling and re-enabling. +// + DBG_UNREFERENCED_LOCAL_VARIABLE(WasDebuggerEnabled); +#if 0 /* Try to disable or enable the debugger, depending on its original state */ if (WasDebuggerEnabled) Command = SysDbgDisableKernelDebugger; // 22 @@ -219,6 +224,8 @@ START_TEST(NtSystemDebugControl) ok_eq_hex_test(Command, Status, STATUS_SUCCESS); else ok_eq_hex_test(Command, Status, STATUS_DEBUGGER_INACTIVE); +#endif +// END FIXME /* Supported commands */