d58024083b2253c53b2564e6daca8e4a1408b3d2
[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_Example;
11 KMT_TESTFUNC Test_FileAttributes;
12 KMT_TESTFUNC Test_FindFile;
13 KMT_TESTFUNC Test_FltMgrLoad;
14 KMT_TESTFUNC Test_FltMgrReg;
15 KMT_TESTFUNC Test_HidPDescription;
16 KMT_TESTFUNC Test_IoCreateFile;
17 KMT_TESTFUNC Test_IoDeviceObject;
18 KMT_TESTFUNC Test_IoReadWrite;
19 KMT_TESTFUNC Test_MmMapLockedPagesSpecifyCache;
20 KMT_TESTFUNC Test_NtCreateSection;
21 KMT_TESTFUNC Test_PoIrp;
22 KMT_TESTFUNC Test_RtlAvlTree;
23 KMT_TESTFUNC Test_RtlException;
24 KMT_TESTFUNC Test_RtlIntSafe;
25 KMT_TESTFUNC Test_RtlMemory;
26 KMT_TESTFUNC Test_RtlRegistry;
27 KMT_TESTFUNC Test_RtlSplayTree;
28 KMT_TESTFUNC Test_RtlStack;
29 KMT_TESTFUNC Test_RtlUnicodeString;
30 KMT_TESTFUNC Test_TcpIpIoctl;
31 KMT_TESTFUNC Test_TcpIpTdi;
32 KMT_TESTFUNC Test_TcpIpConnect;
33
34 /* tests with a leading '-' will not be listed */
35 const KMT_TEST TestList[] =
36 {
37 { "CcCopyRead", Test_CcCopyRead },
38 { "-Example", Test_Example },
39 { "FileAttributes", Test_FileAttributes },
40 { "FindFile", Test_FindFile },
41 { "FltMgrLoad", Test_FltMgrLoad },
42 { "FltMgrReg", Test_FltMgrReg },
43 { "HidPDescription", Test_HidPDescription },
44 { "IoCreateFile", Test_IoCreateFile },
45 { "IoDeviceObject", Test_IoDeviceObject },
46 { "IoReadWrite", Test_IoReadWrite },
47 { "MmMapLockedPagesSpecifyCache", Test_MmMapLockedPagesSpecifyCache },
48 { "NtCreateSection", Test_NtCreateSection },
49 { "PoIrp", Test_PoIrp },
50 { "RtlAvlTree", Test_RtlAvlTree },
51 { "RtlException", Test_RtlException },
52 { "RtlIntSafe", Test_RtlIntSafe },
53 { "RtlMemory", Test_RtlMemory },
54 { "RtlRegistry", Test_RtlRegistry },
55 { "RtlSplayTree", Test_RtlSplayTree },
56 { "RtlStack", Test_RtlStack },
57 { "RtlUnicodeString", Test_RtlUnicodeString },
58 { "TcpIpTdi", Test_TcpIpTdi },
59 { "TcpIpConnect", Test_TcpIpConnect },
60 { NULL, NULL },
61 };