[REACTOS]
[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 <thfabba@gmx.de>
6 */
7
8 #include <kmt_test.h>
9
10 KMT_TESTFUNC Test_Example;
11 KMT_TESTFUNC Test_IoDeviceObject;
12 KMT_TESTFUNC Test_RtlAvlTree;
13 KMT_TESTFUNC Test_RtlException;
14 KMT_TESTFUNC Test_RtlMemory;
15 KMT_TESTFUNC Test_RtlSplayTree;
16 KMT_TESTFUNC Test_RtlUnicodeString;
17
18 /* tests with a leading '-' will not be listed */
19 const KMT_TEST TestList[] =
20 {
21 { "Example", Test_Example },
22 { "IoDeviceObject", Test_IoDeviceObject },
23 { "RtlAvlTree", Test_RtlAvlTree },
24 { "RtlException", Test_RtlException },
25 { "RtlMemory", Test_RtlMemory },
26 { "RtlSplayTree", Test_RtlSplayTree },
27 { "RtlUnicodeString", Test_RtlUnicodeString },
28 { NULL, NULL },
29 };