mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
c845f97fbf
- Add some simple tests for RtlRaiseStatus to the RtlException test - Add missing volatile in (disabled) stack overflow test that caused an infinite loop on GCC builds CORE-8773 svn path=/trunk/; revision=66351
75 lines
2.1 KiB
C
75 lines
2.1 KiB
C
/*
|
|
* PROJECT: ReactOS kernel-mode tests
|
|
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
|
* PURPOSE: Kernel-Mode Test Suite Exception test
|
|
* PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
|
|
*/
|
|
|
|
#define KMT_EMULATE_KERNEL
|
|
#include <kmt_test.h>
|
|
|
|
START_TEST(RtlException)
|
|
{
|
|
PCHAR Buffer[128];
|
|
|
|
/* Access a valid pointer - must not trigger SEH */
|
|
KmtStartSeh()
|
|
RtlFillMemory(Buffer, sizeof(Buffer), 0x12);
|
|
KmtEndSeh(STATUS_SUCCESS);
|
|
|
|
/* Read from a NULL pointer - must cause an access violation */
|
|
KmtStartSeh()
|
|
(void)*(volatile CHAR *)NULL;
|
|
KmtEndSeh(STATUS_ACCESS_VIOLATION);
|
|
|
|
/* Write to a NULL pointer - must cause an access violation */
|
|
KmtStartSeh()
|
|
*(volatile CHAR *)NULL = 5;
|
|
KmtEndSeh(STATUS_ACCESS_VIOLATION);
|
|
|
|
/* TODO: Find where MmBadPointer is defined - gives an unresolved external */
|
|
#if 0 //def KMT_KERNEL_MODE
|
|
/* Read from MmBadPointer - must cause an access violation */
|
|
KmtStartSeh()
|
|
(void)*(volatile CHAR *)MmBadPointer;
|
|
KmtEndSeh(STATUS_ACCESS_VIOLATION);
|
|
|
|
/* Write to MmBadPointer - must cause an access violation */
|
|
KmtStartSeh()
|
|
*(volatile CHAR *)MmBadPointer = 5;
|
|
KmtEndSeh(STATUS_ACCESS_VIOLATION);
|
|
#endif
|
|
|
|
KmtStartSeh()
|
|
ExRaiseStatus(STATUS_ACCESS_VIOLATION);
|
|
KmtEndSeh(STATUS_ACCESS_VIOLATION);
|
|
|
|
KmtStartSeh()
|
|
ExRaiseStatus(STATUS_TIMEOUT);
|
|
KmtEndSeh(STATUS_TIMEOUT);
|
|
|
|
KmtStartSeh()
|
|
ExRaiseStatus(STATUS_STACK_OVERFLOW);
|
|
KmtEndSeh(STATUS_STACK_OVERFLOW);
|
|
|
|
KmtStartSeh()
|
|
ExRaiseStatus(STATUS_GUARD_PAGE_VIOLATION);
|
|
KmtEndSeh(STATUS_GUARD_PAGE_VIOLATION);
|
|
|
|
/* 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()
|
|
volatile CHAR *Pointer;
|
|
|
|
while (1)
|
|
{
|
|
Pointer = _alloca(1024);
|
|
*Pointer = 5;
|
|
}
|
|
KmtEndSeh(STATUS_STACK_OVERFLOW);
|
|
#endif
|
|
#endif /* CORE_6640_IS_FIXED */
|
|
}
|