Author: mnordell
Date: Sat Sep 15 19:39:14 2012
New Revision: 57309
URL: http://svn.reactos.org/svn/reactos?rev=57309&view=rev
Log:
Disable crashing usermode test. See CORE-6640.
Modified:
trunk/rostests/kmtests/rtl/RtlException.c
Modified: trunk/rostests/kmtests/rtl/RtlException.c
URL: http://svn.reactos.org/svn/reactos/trunk/rostests/kmtests/rtl/RtlException.…
==============================================================================
--- trunk/rostests/kmtests/rtl/RtlException.c [iso-8859-1] (original)
+++ trunk/rostests/kmtests/rtl/RtlException.c [iso-8859-1] Sat Sep 15 19:39:14 2012
@@ -43,6 +43,7 @@
/* We cannot test this in kernel mode easily - the stack is just "somewhere"
* in system space, and there's no guard page below it */
+#if CORE_6640_IS_FIXED
#ifdef KMT_USER_MODE
/* Overflow the stack - must cause a special exception */
KmtStartSeh()
@@ -55,4 +56,5 @@
}
KmtEndSeh(STATUS_STACK_OVERFLOW);
#endif
+#endif /* CORE_6640_IS_FIXED */
}