[KMTESTS/RTL]
[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_RtlMemory;
14 KMT_TESTFUNC Test_RtlSplayTree;
15 KMT_TESTFUNC Test_RtlUnicodeString;
16
17 /* tests with a leading '-' will not be listed */
18 const KMT_TEST TestList[] =
19 {
20 { "Example", Test_Example },
21 { "IoDeviceObject", Test_IoDeviceObject },
22 { "RtlAvlTree", Test_RtlAvlTree },
23 { "RtlMemory", Test_RtlMemory },
24 { "RtlSplayTree", Test_RtlSplayTree },
25 { "RtlUnicodeString", Test_RtlUnicodeString },
26 { NULL, NULL },
27 };