Author: tfaber
Date: Sun Apr 7 10:47:10 2013
New Revision: 58708
URL:
http://svn.reactos.org/svn/reactos?rev=58708&view=rev
Log:
[NTDLL_APITEST]
CORE-7065 #comment Temporarily disable the crashing test to get meaningful testbot results
again.
Modified:
trunk/rostests/apitests/ntdll/NtMapViewOfSection.c
Modified: trunk/rostests/apitests/ntdll/NtMapViewOfSection.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/ntdll/NtMapViewO…
==============================================================================
--- trunk/rostests/apitests/ntdll/NtMapViewOfSection.c [iso-8859-1] (original)
+++ trunk/rostests/apitests/ntdll/NtMapViewOfSection.c [iso-8859-1] Sun Apr 7 10:47:10
2013
@@ -103,7 +103,9 @@
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 @@
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;