mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
0515cd1d2e
- Add a small RtlException test, mainly to check that a stack overflow really throws STATUS_STACK_OVERFLOW, not STATUS_ACCESS_VIOLATION. svn path=/trunk/; revision=56434
29 lines
937 B
C
29 lines
937 B
C
/*
|
|
* PROJECT: ReactOS kernel-mode tests
|
|
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
|
* PURPOSE: Kernel-Mode Test Suite user-mode test list
|
|
* PROGRAMMER: Thomas Faber <thfabba@gmx.de>
|
|
*/
|
|
|
|
#include <kmt_test.h>
|
|
|
|
KMT_TESTFUNC Test_Example;
|
|
KMT_TESTFUNC Test_IoDeviceObject;
|
|
KMT_TESTFUNC Test_RtlAvlTree;
|
|
KMT_TESTFUNC Test_RtlException;
|
|
KMT_TESTFUNC Test_RtlMemory;
|
|
KMT_TESTFUNC Test_RtlSplayTree;
|
|
KMT_TESTFUNC Test_RtlUnicodeString;
|
|
|
|
/* tests with a leading '-' will not be listed */
|
|
const KMT_TEST TestList[] =
|
|
{
|
|
{ "Example", Test_Example },
|
|
{ "IoDeviceObject", Test_IoDeviceObject },
|
|
{ "RtlAvlTree", Test_RtlAvlTree },
|
|
{ "RtlException", Test_RtlException },
|
|
{ "RtlMemory", Test_RtlMemory },
|
|
{ "RtlSplayTree", Test_RtlSplayTree },
|
|
{ "RtlUnicodeString", Test_RtlUnicodeString },
|
|
{ NULL, NULL },
|
|
};
|