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