mirror of
https://github.com/reactos/reactos.git
synced 2025-07-05 00:31:22 +00:00
[KMTEST] Fix MmSection tests
This commit is contained in:
parent
937954cf6c
commit
281855e88c
1 changed files with 7 additions and 7 deletions
|
@ -226,10 +226,10 @@ TestCreateSection(
|
||||||
ok_eq_longlong(MaximumSize.QuadPart, 1LL);
|
ok_eq_longlong(MaximumSize.QuadPart, 1LL);
|
||||||
ok(SectionObject != KmtInvalidPointer, "Section object pointer untouched\n");
|
ok(SectionObject != KmtInvalidPointer, "Section object pointer untouched\n");
|
||||||
ok(SectionObject != NULL, "Section object pointer NULL\n");
|
ok(SectionObject != NULL, "Section object pointer NULL\n");
|
||||||
++PointerCount2;
|
//++PointerCount2;
|
||||||
CheckObject(FileHandle2, PointerCount2, 1L);
|
CheckObject(FileHandle2, PointerCount2, 1L);
|
||||||
CheckSection(SectionObject, 0);
|
CheckSection(SectionObject, SEC_IMAGE);
|
||||||
TestMapView(SectionObject, TRUE, TRUE);
|
TestMapView(SectionObject, FALSE, TRUE);
|
||||||
|
|
||||||
if (SectionObject && SectionObject != KmtInvalidPointer)
|
if (SectionObject && SectionObject != KmtInvalidPointer)
|
||||||
ObDereferenceObject(SectionObject);
|
ObDereferenceObject(SectionObject);
|
||||||
|
@ -246,8 +246,8 @@ TestCreateSection(
|
||||||
ok(SectionObject != KmtInvalidPointer, "Section object pointer untouched\n");
|
ok(SectionObject != KmtInvalidPointer, "Section object pointer untouched\n");
|
||||||
ok(SectionObject != NULL, "Section object pointer NULL\n");
|
ok(SectionObject != NULL, "Section object pointer NULL\n");
|
||||||
CheckObject(FileHandle2, PointerCount2, 1L);
|
CheckObject(FileHandle2, PointerCount2, 1L);
|
||||||
CheckSection(SectionObject, 0);
|
CheckSection(SectionObject, SEC_IMAGE);
|
||||||
TestMapView(SectionObject, TRUE, TRUE);
|
TestMapView(SectionObject, FALSE, TRUE);
|
||||||
|
|
||||||
if (SectionObject && SectionObject != KmtInvalidPointer)
|
if (SectionObject && SectionObject != KmtInvalidPointer)
|
||||||
ObDereferenceObject(SectionObject);
|
ObDereferenceObject(SectionObject);
|
||||||
|
@ -316,8 +316,8 @@ TestCreateSection(
|
||||||
ok(SectionObject != NULL, "Section object pointer NULL\n");
|
ok(SectionObject != NULL, "Section object pointer NULL\n");
|
||||||
CheckObject(FileHandle1, PointerCount1, 1L);
|
CheckObject(FileHandle1, PointerCount1, 1L);
|
||||||
CheckObject(FileHandle2, PointerCount2, 1L);
|
CheckObject(FileHandle2, PointerCount2, 1L);
|
||||||
CheckSection(SectionObject, 0);
|
CheckSection(SectionObject, SEC_IMAGE);
|
||||||
TestMapView(SectionObject, TRUE, TRUE);
|
TestMapView(SectionObject, FALSE, TRUE);
|
||||||
|
|
||||||
if (SectionObject && SectionObject != KmtInvalidPointer)
|
if (SectionObject && SectionObject != KmtInvalidPointer)
|
||||||
ObDereferenceObject(SectionObject);
|
ObDereferenceObject(SectionObject);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue