mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00:00
[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.
This commit is contained in:
parent
94cb4d6c0c
commit
40ea081198
1 changed files with 7 additions and 0 deletions
|
@ -180,6 +180,11 @@ START_TEST(NtSystemDebugControl)
|
||||||
* the next tests are going to change its state */
|
* the next tests are going to change its state */
|
||||||
WasDebuggerEnabled = SharedUserData->KdDebuggerEnabled;
|
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 */
|
/* Try to disable or enable the debugger, depending on its original state */
|
||||||
if (WasDebuggerEnabled)
|
if (WasDebuggerEnabled)
|
||||||
Command = SysDbgDisableKernelDebugger; // 22
|
Command = SysDbgDisableKernelDebugger; // 22
|
||||||
|
@ -219,6 +224,8 @@ START_TEST(NtSystemDebugControl)
|
||||||
ok_eq_hex_test(Command, Status, STATUS_SUCCESS);
|
ok_eq_hex_test(Command, Status, STATUS_SUCCESS);
|
||||||
else
|
else
|
||||||
ok_eq_hex_test(Command, Status, STATUS_DEBUGGER_INACTIVE);
|
ok_eq_hex_test(Command, Status, STATUS_DEBUGGER_INACTIVE);
|
||||||
|
#endif
|
||||||
|
// END FIXME
|
||||||
|
|
||||||
|
|
||||||
/* Supported commands */
|
/* Supported commands */
|
||||||
|
|
Loading…
Reference in a new issue