360e120a22bb7fdf6b1b679278f8f81d6fdbef9f
[reactos.git] / rostests / kmtests / kmtest / testlist.c
1 /*
2 * PROJECT: ReactOS kernel-mode tests
3 * LICENSE: GPLv2+ - See COPYING in the top level directory
4 * PURPOSE: Kernel-Mode Test Suite user-mode test list
5 * PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
6 */
7
8 #include <kmt_test.h>
9
10 KMT_TESTFUNC Test_Example;
11 KMT_TESTFUNC Test_FindFile;
12 KMT_TESTFUNC Test_IoCreateFile;
13 KMT_TESTFUNC Test_IoDeviceObject;
14 KMT_TESTFUNC Test_IoReadWrite;
15 KMT_TESTFUNC Test_PoIrp;
16 KMT_TESTFUNC Test_RtlAvlTree;
17 KMT_TESTFUNC Test_RtlException;
18 KMT_TESTFUNC Test_RtlIntSafe;
19 KMT_TESTFUNC Test_RtlMemory;
20 KMT_TESTFUNC Test_RtlRegistry;
21 KMT_TESTFUNC Test_RtlSplayTree;
22 KMT_TESTFUNC Test_RtlUnicodeString;
23 KMT_TESTFUNC Test_TcpIpIoctl;
24 KMT_TESTFUNC Test_TcpIpTdi;
25 KMT_TESTFUNC Test_TcpIpConnect;
26
27 /* tests with a leading '-' will not be listed */
28 const KMT_TEST TestList[] =
29 {
30 { "-Example", Test_Example },
31 { "FindFile", Test_FindFile },
32 { "IoCreateFile", Test_IoCreateFile },
33 { "IoDeviceObject", Test_IoDeviceObject },
34 { "IoReadWrite", Test_IoReadWrite },
35 { "PoIrp", Test_PoIrp },
36 { "RtlAvlTree", Test_RtlAvlTree },
37 { "RtlException", Test_RtlException },
38 { "RtlIntSafe", Test_RtlIntSafe },
39 { "RtlMemory", Test_RtlMemory },
40 { "RtlRegistry", Test_RtlRegistry },
41 { "RtlSplayTree", Test_RtlSplayTree },
42 { "RtlUnicodeString", Test_RtlUnicodeString },
43 { "TcpIpTdi", Test_TcpIpTdi },
44 { "TcpIpConnect", Test_TcpIpConnect },
45 { NULL, NULL },
46 };