https://git.reactos.org/?p=reactos.git;a=commitdiff;h=40ea0811982ca7faaf4d2…
commit 40ea0811982ca7faaf4d243128e793a986d29649
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Sun Jan 12 20:01:20 2025 +0100
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Tue Jan 28 15:54:04 2025 +0100
[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 */