mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[KMTESTS:FSRTL]
Add comments svn path=/trunk/; revision=58962
This commit is contained in:
parent
c97cdd5dd9
commit
bfe3492dc4
1 changed files with 6 additions and 0 deletions
|
@ -146,6 +146,10 @@ static VOID FsRtlLargeMcbTest()
|
|||
NbRuns = FsRtlNumberOfRunsInLargeMcb(&LargeMcb);
|
||||
ok(NbRuns == 0, "Expected 0 runs, got: %lu\n", NbRuns);
|
||||
|
||||
/* Create a mapping with three holes between each mapping
|
||||
* It looks like that:
|
||||
* ----//////-----/////-----///////
|
||||
*/
|
||||
ok(FsRtlAddLargeMcbEntry(&LargeMcb, 1024, 1024, 1024) == TRUE, "expected TRUE, got FALSE\n");
|
||||
ok(FsRtlAddLargeMcbEntry(&LargeMcb, 3072, 3072, 1024) == TRUE, "expected TRUE, got FALSE\n");
|
||||
ok(FsRtlAddLargeMcbEntry(&LargeMcb, 5120, 5120, 1024) == TRUE, "expected TRUE, got FALSE\n");
|
||||
|
@ -183,6 +187,7 @@ static VOID FsRtlLargeMcbTest()
|
|||
ok(Lbn == 5120, "Expected Lbn 5120, got: %I64d\n", Lbn);
|
||||
ok(SectorCount == 1024, "Expected SectorCount 1024, got: %I64d\n", SectorCount);
|
||||
|
||||
/* Fill first hole */
|
||||
ok(FsRtlAddLargeMcbEntry(&LargeMcb, 0, 0, 1024) == TRUE, "expected TRUE, got FALSE\n");
|
||||
|
||||
NbRuns = FsRtlNumberOfRunsInLargeMcb(&LargeMcb);
|
||||
|
@ -208,6 +213,7 @@ static VOID FsRtlLargeMcbTest()
|
|||
ok(Lbn == 5120, "Expected Lbn 5120, got: %I64d\n", Lbn);
|
||||
ok(SectorCount == 1024, "Expected SectorCount 1024, got: %I64d\n", SectorCount);
|
||||
|
||||
/* Fill half of the last hole and overlap */
|
||||
ok(FsRtlAddLargeMcbEntry(&LargeMcb, 4608, 4608, 1024) == TRUE, "expected TRUE, got FALSE\n");
|
||||
|
||||
NbRuns = FsRtlNumberOfRunsInLargeMcb(&LargeMcb);
|
||||
|
|
Loading…
Reference in a new issue