mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 16:51:18 +00:00
[KMTESTS:CC] Fix two failing tests on WHS bot
This commit is contained in:
parent
23a90aab5a
commit
c287bbe586
2 changed files with 4 additions and 2 deletions
|
@ -335,8 +335,9 @@ PerformTest(
|
|||
KmtStartSeh();
|
||||
Ret = CcMapData(TestFileObject, &Offset, 0x1000, 0, &Bcb, (PVOID *)&Buffer);
|
||||
KmtEndSeh(STATUS_SUCCESS);
|
||||
ok(Ret == FALSE, "CcMapData succeed\n");
|
||||
|
||||
if (!skip(Ret == TRUE, "CcMapData failed\n"))
|
||||
if (Ret)
|
||||
{
|
||||
CcUnpinData(Bcb);
|
||||
}
|
||||
|
|
|
@ -486,8 +486,9 @@ PerformTest(
|
|||
KmtStartSeh();
|
||||
Ret = CcPinRead(TestFileObject, &Offset, 0x1000, 0, &Bcb, (PVOID *)&Buffer);
|
||||
KmtEndSeh(STATUS_SUCCESS);
|
||||
ok(Ret == FALSE, "CcMapData succeed\n");
|
||||
|
||||
if (!skip(Ret == TRUE, "CcPinRead failed\n"))
|
||||
if (Ret)
|
||||
{
|
||||
CcUnpinData(Bcb);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue