8f1657816e960850b17ea4c2bdd0713d5602eb90
[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_IoDeviceObject;
13 KMT_TESTFUNC Test_IoReadWrite;
14 KMT_TESTFUNC Test_RtlAvlTree;
15 KMT_TESTFUNC Test_RtlException;
16 KMT_TESTFUNC Test_RtlIntSafe;
17 KMT_TESTFUNC Test_RtlMemory;
18 KMT_TESTFUNC Test_RtlRegistry;
19 KMT_TESTFUNC Test_RtlSplayTree;
20 KMT_TESTFUNC Test_RtlUnicodeString;
21 KMT_TESTFUNC Test_TcpIpIoctl;
22 KMT_TESTFUNC Test_TcpIpTdi;
23 KMT_TESTFUNC Test_TcpIpConnect;
24
25 /* tests with a leading '-' will not be listed */
26 const KMT_TEST TestList[] =
27 {
28 { "-Example", Test_Example },
29 { "FindFile", Test_FindFile },
30 { "IoDeviceObject", Test_IoDeviceObject },
31 { "IoReadWrite", Test_IoReadWrite },
32 { "RtlAvlTree", Test_RtlAvlTree },
33 { "RtlException", Test_RtlException },
34 { "RtlIntSafe", Test_RtlIntSafe },
35 { "RtlMemory", Test_RtlMemory },
36 { "RtlRegistry", Test_RtlRegistry },
37 { "RtlSplayTree", Test_RtlSplayTree },
38 { "RtlUnicodeString", Test_RtlUnicodeString },
39 { "TcpIpTdi", Test_TcpIpTdi },
40 { "TcpIpConnect", Test_TcpIpConnect },
41 { NULL, NULL },
42 };