[THEMES]
[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_RtlAvlTree;
14 KMT_TESTFUNC Test_RtlException;
15 KMT_TESTFUNC Test_RtlIntSafe;
16 KMT_TESTFUNC Test_RtlMemory;
17 KMT_TESTFUNC Test_RtlRegistry;
18 KMT_TESTFUNC Test_RtlSplayTree;
19 KMT_TESTFUNC Test_RtlUnicodeString;
20
21 /* tests with a leading '-' will not be listed */
22 const KMT_TEST TestList[] =
23 {
24 { "Example", Test_Example },
25 { "FindFile", Test_FindFile },
26 { "IoDeviceObject", Test_IoDeviceObject },
27 { "RtlAvlTree", Test_RtlAvlTree },
28 { "RtlException", Test_RtlException },
29 { "RtlIntSafe", Test_RtlIntSafe },
30 { "RtlMemory", Test_RtlMemory },
31 { "RtlRegistry", Test_RtlRegistry },
32 { "RtlSplayTree", Test_RtlSplayTree },
33 { "RtlUnicodeString", Test_RtlUnicodeString },
34 { NULL, NULL },
35 };