mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:46:17 +00:00
[NTDLL_APITEST]
CORE-7065 #comment Temporarily disable the crashing test to get meaningful testbot results again. svn path=/trunk/; revision=58708
This commit is contained in:
parent
52848627a1
commit
1740826018
1 changed files with 4 additions and 2 deletions
|
@ -103,7 +103,9 @@ Test_PageFileSection(void)
|
|||
MEM_COMMIT,
|
||||
PAGE_READWRITE);
|
||||
ok(NT_SUCCESS(Status), "NtAllocateVirtualMemory failed with Status %lx\n", Status);
|
||||
|
||||
#ifndef CORE_7065_FIXED
|
||||
ok(0, "Committing a range larger than the section crashes. See CORE-7065\n");
|
||||
#else
|
||||
/* Try to commit a range larger than the section */
|
||||
BaseAddress = (PVOID)0x30000000;
|
||||
ViewSize = 0x3000;
|
||||
|
@ -115,7 +117,7 @@ Test_PageFileSection(void)
|
|||
PAGE_READWRITE);
|
||||
ok(Status == STATUS_CONFLICTING_ADDRESSES,
|
||||
"NtAllocateVirtualMemory failed with wrong Status %lx\n", Status);
|
||||
|
||||
#endif
|
||||
/* Try to commit a page after the section */
|
||||
BaseAddress = (PVOID)0x30002000;
|
||||
ViewSize = 0x1000;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue