From 174082601893e9b1ec5627f4596ab3414b234421 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 7 Apr 2013 10:47:10 +0000 Subject: [PATCH] [NTDLL_APITEST] CORE-7065 #comment Temporarily disable the crashing test to get meaningful testbot results again. svn path=/trunk/; revision=58708 --- rostests/apitests/ntdll/NtMapViewOfSection.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rostests/apitests/ntdll/NtMapViewOfSection.c b/rostests/apitests/ntdll/NtMapViewOfSection.c index 3cee1577775..8727164ebdf 100644 --- a/rostests/apitests/ntdll/NtMapViewOfSection.c +++ b/rostests/apitests/ntdll/NtMapViewOfSection.c @@ -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; -- 2.17.1