mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[KMTESTS:CC] Fix two failing tests on WHS bot
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user