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_CcCopyRead; 11 KMT_TESTFUNC Test_Example; 12 KMT_TESTFUNC Test_FileAttributes; 13 KMT_TESTFUNC Test_FindFile; 14 KMT_TESTFUNC Test_HidPDescription; 15 KMT_TESTFUNC Test_IoCreateFile; 16 KMT_TESTFUNC Test_IoDeviceObject; 17 KMT_TESTFUNC Test_IoReadWrite; 18 KMT_TESTFUNC Test_MmMapLockedPagesSpecifyCache; 19 KMT_TESTFUNC Test_NtCreateSection; 20 KMT_TESTFUNC Test_PoIrp; 21 KMT_TESTFUNC Test_RtlAvlTree; 22 KMT_TESTFUNC Test_RtlException; 23 KMT_TESTFUNC Test_RtlIntSafe; 24 KMT_TESTFUNC Test_RtlMemory; 25 KMT_TESTFUNC Test_RtlRegistry; 26 KMT_TESTFUNC Test_RtlSplayTree; 27 KMT_TESTFUNC Test_RtlStack; 28 KMT_TESTFUNC Test_RtlUnicodeString; 29 KMT_TESTFUNC Test_TcpIpIoctl; 30 KMT_TESTFUNC Test_TcpIpTdi; 31 KMT_TESTFUNC Test_TcpIpConnect; 32 33 /* tests with a leading '-' will not be listed */ 34 const KMT_TEST TestList[] = 35 { 36 { "CcCopyRead", Test_CcCopyRead }, 37 { "-Example", Test_Example }, 38 { "FileAttributes", Test_FileAttributes }, 39 { "FindFile", Test_FindFile }, 40 { "HidPDescription", Test_HidPDescription }, 41 { "IoCreateFile", Test_IoCreateFile }, 42 { "IoDeviceObject", Test_IoDeviceObject }, 43 { "IoReadWrite", Test_IoReadWrite }, 44 { "MmMapLockedPagesSpecifyCache", Test_MmMapLockedPagesSpecifyCache }, 45 { "NtCreateSection", Test_NtCreateSection }, 46 { "PoIrp", Test_PoIrp }, 47 { "RtlAvlTree", Test_RtlAvlTree }, 48 { "RtlException", Test_RtlException }, 49 { "RtlIntSafe", Test_RtlIntSafe }, 50 { "RtlMemory", Test_RtlMemory }, 51 { "RtlRegistry", Test_RtlRegistry }, 52 { "RtlSplayTree", Test_RtlSplayTree }, 53 { "RtlStack", Test_RtlStack }, 54 { "RtlUnicodeString", Test_RtlUnicodeString }, 55 { "TcpIpTdi", Test_TcpIpTdi }, 56 { "TcpIpConnect", Test_TcpIpConnect }, 57 { NULL, NULL }, 58 }; 59