Reactos

[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.

+7
+7
modules/rostests/kmtests/ntos_kd/NtSystemDebugControl.c
··· 180 180 * the next tests are going to change its state */ 181 181 WasDebuggerEnabled = SharedUserData->KdDebuggerEnabled; 182 182 183 + // 184 + // FIXME: Re-enable ONCE our KDBG and KDCOM dlls support disabling and re-enabling. 185 + // 186 + DBG_UNREFERENCED_LOCAL_VARIABLE(WasDebuggerEnabled); 187 + #if 0 183 188 /* Try to disable or enable the debugger, depending on its original state */ 184 189 if (WasDebuggerEnabled) 185 190 Command = SysDbgDisableKernelDebugger; // 22 ··· 219 224 ok_eq_hex_test(Command, Status, STATUS_SUCCESS); 220 225 else 221 226 ok_eq_hex_test(Command, Status, STATUS_DEBUGGER_INACTIVE); 227 + #endif 228 + // END FIXME 222 229 223 230 224 231 /* Supported commands */