mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 10:56:05 +00:00
[NTDLL_APITEST] Fix unreliable test for NtContinue
Some EFLAGS bits depend on the hardware / OS environments.
This commit is contained in:
parent
82a57e41e1
commit
c0b4a2cab0
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ void check(CONTEXT * pContext)
|
|||
ok_eq_hex(pContext->SegFs, 0x53);
|
||||
ok_eq_hex(pContext->SegGs, 0x2B);
|
||||
ok_eq_hex(pContext->SegSs, continueContext.SegSs);
|
||||
ok_eq_hex(pContext->EFlags, (continueContext.EFlags & ~0x1C0000) | 0x202);
|
||||
ok_eq_hex(pContext->EFlags & ~0x1C0000, (continueContext.EFlags & ~0x1C0000) | 0x202);
|
||||
|
||||
ok_eq_hex64(pContext->Rax, continueContext.Rax);
|
||||
ok_eq_hex64(pContext->Rdx, continueContext.Rdx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue