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
|
2013-10-12 16:05:54 +00:00
|
|
|
* PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
|
2011-07-03 18:53:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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;
|
2015-09-22 22:31:08 +00:00
|
|
|
KMT_TESTFUNC Test_IoCreateFile;
|
2011-08-17 12:04:15 +00:00
|
|
|
KMT_TESTFUNC Test_IoDeviceObject;
|
2015-05-01 11:03:21 +00:00
|
|
|
KMT_TESTFUNC Test_IoReadWrite;
|
2011-08-03 11:21:35 +00:00
|
|
|
KMT_TESTFUNC Test_RtlAvlTree;
|
2012-04-27 08:36:58 +00:00
|
|
|
KMT_TESTFUNC Test_RtlException;
|
2013-11-14 09:19:16 +00:00
|
|
|
KMT_TESTFUNC Test_RtlIntSafe;
|
2011-07-26 07:40:19 +00:00
|
|
|
KMT_TESTFUNC Test_RtlMemory;
|
2013-07-20 19:33:13 +00:00
|
|
|
KMT_TESTFUNC Test_RtlRegistry;
|
2011-08-03 11:21:35 +00:00
|
|
|
KMT_TESTFUNC Test_RtlSplayTree;
|
2011-10-12 11:25:34 +00:00
|
|
|
KMT_TESTFUNC Test_RtlUnicodeString;
|
2014-12-02 18:06:48 +00:00
|
|
|
KMT_TESTFUNC Test_TcpIpIoctl;
|
|
|
|
KMT_TESTFUNC Test_TcpIpTdi;
|
2015-02-06 10:49:04 +00:00
|
|
|
KMT_TESTFUNC Test_TcpIpConnect;
|
2011-07-03 18:53:26 +00:00
|
|
|
|
|
|
|
/* tests with a leading '-' will not be listed */
|
|
|
|
const KMT_TEST TestList[] =
|
|
|
|
{
|
2014-02-20 19:26:24 +00:00
|
|
|
{ "-Example", Test_Example },
|
2013-04-21 19:00:10 +00:00
|
|
|
{ "FindFile", Test_FindFile },
|
2015-09-22 22:31:08 +00:00
|
|
|
{ "IoCreateFile", Test_IoCreateFile },
|
2011-08-17 12:04:15 +00:00
|
|
|
{ "IoDeviceObject", Test_IoDeviceObject },
|
2015-05-01 11:03:21 +00:00
|
|
|
{ "IoReadWrite", Test_IoReadWrite },
|
2011-08-03 11:21:35 +00:00
|
|
|
{ "RtlAvlTree", Test_RtlAvlTree },
|
2012-04-27 08:36:58 +00:00
|
|
|
{ "RtlException", Test_RtlException },
|
2013-11-14 09:19:16 +00:00
|
|
|
{ "RtlIntSafe", Test_RtlIntSafe },
|
2011-07-26 07:40:19 +00:00
|
|
|
{ "RtlMemory", Test_RtlMemory },
|
2013-07-20 19:33:13 +00:00
|
|
|
{ "RtlRegistry", Test_RtlRegistry },
|
2011-08-03 11:21:35 +00:00
|
|
|
{ "RtlSplayTree", Test_RtlSplayTree },
|
2011-10-12 11:25:34 +00:00
|
|
|
{ "RtlUnicodeString", Test_RtlUnicodeString },
|
2014-12-02 18:06:48 +00:00
|
|
|
{ "TcpIpTdi", Test_TcpIpTdi },
|
2015-02-06 10:49:04 +00:00
|
|
|
{ "TcpIpConnect", Test_TcpIpConnect },
|
2011-07-03 18:53:26 +00:00
|
|
|
{ NULL, NULL },
|
|
|
|
};
|