[KMTESTS/RTL]
[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 #define WIN32_LEAN_AND_MEAN
9 #define UNICODE
10 #include <windows.h>
11 #include <kmt_test.h>
12
13 KMT_TESTFUNC Test_Example;
14 KMT_TESTFUNC Test_RtlMemory;
15
16 /* tests with a leading '-' will not be listed */
17 const KMT_TEST TestList[] =
18 {
19 { "Example", Test_Example },
20 { "RtlMemory", Test_RtlMemory },
21 { NULL, NULL },
22 };