2011-07-03 18:53:26 +00:00
|
|
|
/*
|
2018-02-18 10:14:13 +00:00
|
|
|
* PROJECT: ReactOS kernel-mode tests
|
|
|
|
* LICENSE: LGPL-2.1+ (https://spdx.org/licenses/LGPL-2.1+)
|
|
|
|
* PURPOSE: Kernel-Mode Test Suite user-mode test list
|
2011-07-03 18:53:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <kmt_test.h>
|
|
|
|
|
2016-05-28 19:59:10 +00:00
|
|
|
KMT_TESTFUNC Test_CcCopyRead;
|
2019-04-16 06:25:09 +00:00
|
|
|
KMT_TESTFUNC Test_CcCopyWrite;
|
2018-03-10 10:13:32 +00:00
|
|
|
KMT_TESTFUNC Test_CcMapData;
|
2018-10-13 12:23:38 +00:00
|
|
|
KMT_TESTFUNC Test_CcPinMappedData;
|
2018-09-01 10:20:17 +00:00
|
|
|
KMT_TESTFUNC Test_CcPinRead;
|
2018-12-22 11:29:18 +00:00
|
|
|
KMT_TESTFUNC Test_CcSetFileSizes;
|
2011-07-26 07:40:19 +00:00
|
|
|
KMT_TESTFUNC Test_Example;
|
2017-06-29 16:16:20 +00:00
|
|
|
KMT_TESTFUNC Test_FileAttributes;
|
2013-04-21 19:00:10 +00:00
|
|
|
KMT_TESTFUNC Test_FindFile;
|
2017-11-21 16:36:29 +00:00
|
|
|
KMT_TESTFUNC Test_FltMgrLoad;
|
|
|
|
KMT_TESTFUNC Test_FltMgrReg;
|
2017-06-13 05:48:28 +00:00
|
|
|
KMT_TESTFUNC Test_HidPDescription;
|
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;
|
2017-06-02 19:19:32 +00:00
|
|
|
KMT_TESTFUNC Test_MmMapLockedPagesSpecifyCache;
|
2016-11-10 21:02:48 +00:00
|
|
|
KMT_TESTFUNC Test_NtCreateSection;
|
2015-10-11 17:06:14 +00:00
|
|
|
KMT_TESTFUNC Test_PoIrp;
|
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;
|
2017-05-06 15:29:56 +00:00
|
|
|
KMT_TESTFUNC Test_RtlStack;
|
2018-04-21 06:56:12 +00:00
|
|
|
KMT_TESTFUNC Test_RtlStrSafe;
|
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[] =
|
|
|
|
{
|
2017-06-02 19:19:32 +00:00
|
|
|
{ "CcCopyRead", Test_CcCopyRead },
|
2019-04-16 06:25:09 +00:00
|
|
|
{ "CcCopyWrite", Test_CcCopyWrite },
|
2018-03-10 10:13:32 +00:00
|
|
|
{ "CcMapData", Test_CcMapData },
|
2018-10-13 12:23:38 +00:00
|
|
|
{ "CcPinMappedData", Test_CcPinMappedData },
|
2018-09-01 10:20:17 +00:00
|
|
|
{ "CcPinRead", Test_CcPinRead },
|
2018-12-22 11:29:18 +00:00
|
|
|
{ "CcSetFileSizes", Test_CcSetFileSizes },
|
2017-06-02 19:19:32 +00:00
|
|
|
{ "-Example", Test_Example },
|
2017-06-29 16:16:20 +00:00
|
|
|
{ "FileAttributes", Test_FileAttributes },
|
2017-06-02 19:19:32 +00:00
|
|
|
{ "FindFile", Test_FindFile },
|
2018-09-01 15:50:23 +00:00
|
|
|
{ "-FltMgrLoad", Test_FltMgrLoad }, // TODO: WIP/untested/crashes.
|
|
|
|
{ "-FltMgrReg", Test_FltMgrReg }, // TODO: WIP/untested/crashes.
|
2017-06-13 05:48:28 +00:00
|
|
|
{ "HidPDescription", Test_HidPDescription },
|
2017-06-02 19:19:32 +00:00
|
|
|
{ "IoCreateFile", Test_IoCreateFile },
|
|
|
|
{ "IoDeviceObject", Test_IoDeviceObject },
|
|
|
|
{ "IoReadWrite", Test_IoReadWrite },
|
|
|
|
{ "MmMapLockedPagesSpecifyCache", Test_MmMapLockedPagesSpecifyCache },
|
|
|
|
{ "NtCreateSection", Test_NtCreateSection },
|
|
|
|
{ "PoIrp", Test_PoIrp },
|
|
|
|
{ "RtlAvlTree", Test_RtlAvlTree },
|
|
|
|
{ "RtlException", Test_RtlException },
|
|
|
|
{ "RtlIntSafe", Test_RtlIntSafe },
|
|
|
|
{ "RtlMemory", Test_RtlMemory },
|
|
|
|
{ "RtlRegistry", Test_RtlRegistry },
|
|
|
|
{ "RtlSplayTree", Test_RtlSplayTree },
|
|
|
|
{ "RtlStack", Test_RtlStack },
|
2018-04-21 06:56:12 +00:00
|
|
|
{ "RtlStrSafe", Test_RtlStrSafe },
|
2017-06-02 19:19:32 +00:00
|
|
|
{ "RtlUnicodeString", Test_RtlUnicodeString },
|
|
|
|
{ "TcpIpTdi", Test_TcpIpTdi },
|
|
|
|
{ "TcpIpConnect", Test_TcpIpConnect },
|
|
|
|
{ NULL, NULL },
|
2011-07-03 18:53:26 +00:00
|
|
|
};
|