2011-07-03 18:53:26 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2011-07-26 07:40:19 +00:00
|
|
|
KMT_TESTFUNC Test_Example;
|
2013-04-21 19:00:10 +00:00
|
|
|
KMT_TESTFUNC Test_FindFile;
|
2011-08-17 12:04:15 +00:00
|
|
|
KMT_TESTFUNC Test_IoDeviceObject;
|
2011-08-03 11:21:35 +00:00
|
|
|
KMT_TESTFUNC Test_RtlAvlTree;
|
2012-04-27 08:36:58 +00:00
|
|
|
KMT_TESTFUNC Test_RtlException;
|
2011-07-26 07:40:19 +00:00
|
|
|
KMT_TESTFUNC Test_RtlMemory;
|
2011-08-03 11:21:35 +00:00
|
|
|
KMT_TESTFUNC Test_RtlSplayTree;
|
2011-10-12 11:25:34 +00:00
|
|
|
KMT_TESTFUNC Test_RtlUnicodeString;
|
2011-07-03 18:53:26 +00:00
|
|
|
|
|
|
|
/* tests with a leading '-' will not be listed */
|
|
|
|
const KMT_TEST TestList[] =
|
|
|
|
{
|
2011-07-06 18:55:21 +00:00
|
|
|
{ "Example", Test_Example },
|
2013-04-21 19:00:10 +00:00
|
|
|
{ "FindFile", Test_FindFile },
|
2011-08-17 12:04:15 +00:00
|
|
|
{ "IoDeviceObject", Test_IoDeviceObject },
|
2011-08-03 11:21:35 +00:00
|
|
|
{ "RtlAvlTree", Test_RtlAvlTree },
|
2012-04-27 08:36:58 +00:00
|
|
|
{ "RtlException", Test_RtlException },
|
2011-07-26 07:40:19 +00:00
|
|
|
{ "RtlMemory", Test_RtlMemory },
|
2011-08-03 11:21:35 +00:00
|
|
|
{ "RtlSplayTree", Test_RtlSplayTree },
|
2011-10-12 11:25:34 +00:00
|
|
|
{ "RtlUnicodeString", Test_RtlUnicodeString },
|
2011-07-03 18:53:26 +00:00
|
|
|
{ NULL, NULL },
|
|
|
|
};
|