[KMTESTS:FLTMGR] Hide FltMgrLoad and FltMgrReg
[reactos.git] / modules / rostests / kmtests / kmtest / testlist.c
1 /*
2 * PROJECT: ReactOS kernel-mode tests
3 * LICENSE: LGPL-2.1+ (https://spdx.org/licenses/LGPL-2.1+)
4 * PURPOSE: Kernel-Mode Test Suite user-mode test list
5 */
6
7 #include <kmt_test.h>
8
9 KMT_TESTFUNC Test_CcCopyRead;
10 KMT_TESTFUNC Test_CcMapData;
11 KMT_TESTFUNC Test_CcPinRead;
12 KMT_TESTFUNC Test_Example;
13 KMT_TESTFUNC Test_FileAttributes;
14 KMT_TESTFUNC Test_FindFile;
15 KMT_TESTFUNC Test_FltMgrLoad;
16 KMT_TESTFUNC Test_FltMgrReg;
17 KMT_TESTFUNC Test_HidPDescription;
18 KMT_TESTFUNC Test_IoCreateFile;
19 KMT_TESTFUNC Test_IoDeviceObject;
20 KMT_TESTFUNC Test_IoReadWrite;
21 KMT_TESTFUNC Test_MmMapLockedPagesSpecifyCache;
22 KMT_TESTFUNC Test_NtCreateSection;
23 KMT_TESTFUNC Test_PoIrp;
24 KMT_TESTFUNC Test_RtlAvlTree;
25 KMT_TESTFUNC Test_RtlException;
26 KMT_TESTFUNC Test_RtlIntSafe;
27 KMT_TESTFUNC Test_RtlMemory;
28 KMT_TESTFUNC Test_RtlRegistry;
29 KMT_TESTFUNC Test_RtlSplayTree;
30 KMT_TESTFUNC Test_RtlStack;
31 KMT_TESTFUNC Test_RtlUnicodeString;
32 KMT_TESTFUNC Test_TcpIpIoctl;
33 KMT_TESTFUNC Test_TcpIpTdi;
34 KMT_TESTFUNC Test_TcpIpConnect;
35
36 /* tests with a leading '-' will not be listed */
37 const KMT_TEST TestList[] =
38 {
39 { "CcCopyRead", Test_CcCopyRead },
40 { "CcMapData", Test_CcMapData },
41 { "CcPinRead", Test_CcPinRead },
42 { "-Example", Test_Example },
43 { "FileAttributes", Test_FileAttributes },
44 { "FindFile", Test_FindFile },
45 { "-FltMgrLoad", Test_FltMgrLoad }, // TODO: WIP/untested/crashes.
46 { "-FltMgrReg", Test_FltMgrReg }, // TODO: WIP/untested/crashes.
47 { "HidPDescription", Test_HidPDescription },
48 { "IoCreateFile", Test_IoCreateFile },
49 { "IoDeviceObject", Test_IoDeviceObject },
50 { "IoReadWrite", Test_IoReadWrite },
51 { "MmMapLockedPagesSpecifyCache", Test_MmMapLockedPagesSpecifyCache },
52 { "NtCreateSection", Test_NtCreateSection },
53 { "PoIrp", Test_PoIrp },
54 { "RtlAvlTree", Test_RtlAvlTree },
55 { "RtlException", Test_RtlException },
56 { "RtlIntSafe", Test_RtlIntSafe },
57 { "RtlMemory", Test_RtlMemory },
58 { "RtlRegistry", Test_RtlRegistry },
59 { "RtlSplayTree", Test_RtlSplayTree },
60 { "RtlStack", Test_RtlStack },
61 { "RtlUnicodeString", Test_RtlUnicodeString },
62 { "TcpIpTdi", Test_TcpIpTdi },
63 { "TcpIpConnect", Test_TcpIpConnect },
64 { NULL, NULL },
65 };