Changeset 104440 in vbox for trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TestCheckRegCtxEx.c
- Timestamp:
- Apr 26, 2024 10:30:39 AM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 162948
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TestCheckRegCtxEx.c
r98103 r104440 96 96 if (!(fbFlags & BS3REG_CTX_F_NO_CR2_CR3)) 97 97 { 98 CHECK_MEMBER("cr2", "%08RX64", pActualCtx->cr2.u, pExpectedCtx->cr2.u); 98 /* cr2Range is always zero except if changed by the test worker */ 99 if ((pActualCtx->cr2.u < pExpectedCtx->cr2.u || 100 pActualCtx->cr2.u > pExpectedCtx->cr2.u + pExpectedCtx->cr2Range)) 101 { 102 CHECK_MEMBER("cr2", "%08RX64", pActualCtx->cr2.u, pExpectedCtx->cr2.u); 103 } 99 104 CHECK_MEMBER("cr3", "%08RX64", pActualCtx->cr3.u, pExpectedCtx->cr3.u); 100 105 }
Note:
See TracChangeset
for help on using the changeset viewer.