mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[KMTESTS:MM]
- Gracefully handle file open failure in ZwCreateSection test. Patch by Aleksandar Andrejevic. ROSTESTS-115 #resolve svn path=/trunk/; revision=59362
This commit is contained in:
parent
a8ece748b5
commit
1c1f89cd6b
1 changed files with 6 additions and 3 deletions
|
@ -507,9 +507,12 @@ START_TEST(ZwCreateSection)
|
|||
|
||||
KmtInitTestFiles(&FileHandleReadOnly, &FileHandleWriteOnly, &FileHandleExecuteOnly);
|
||||
|
||||
FileSectionViewPermissionCheck(FileHandleReadOnly, FileHandleWriteOnly, FileHandleExecuteOnly);
|
||||
SimpleErrorChecks(FileHandleReadOnly, FileHandleWriteOnly, FileHandleExecuteOnly);
|
||||
BasicBehaviorChecks(FileHandleWriteOnly);
|
||||
if (FileHandleReadOnly && FileHandleWriteOnly && FileHandleExecuteOnly)
|
||||
{
|
||||
FileSectionViewPermissionCheck(FileHandleReadOnly, FileHandleWriteOnly, FileHandleExecuteOnly);
|
||||
SimpleErrorChecks(FileHandleReadOnly, FileHandleWriteOnly, FileHandleExecuteOnly);
|
||||
BasicBehaviorChecks(FileHandleWriteOnly);
|
||||
}
|
||||
|
||||
if (FileHandleReadOnly)
|
||||
ZwClose(FileHandleReadOnly);
|
||||
|
|
Loading…
Reference in a new issue