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