1 /* 2 * PROJECT: ReactOS kernel-mode tests 3 * LICENSE: LGPL-2.1+ (https://spdx.org/licenses/LGPL-2.1+) 4 * PURPOSE: Kernel-Mode Test Suite user-mode test list 5 */ 6 7 #include <kmt_test.h> 8 9 KMT_TESTFUNC Test_CcCopyRead; 10 KMT_TESTFUNC Test_CcMapData; 11 KMT_TESTFUNC Test_Example; 12 KMT_TESTFUNC Test_FileAttributes; 13 KMT_TESTFUNC Test_FindFile; 14 KMT_TESTFUNC Test_FltMgrLoad; 15 KMT_TESTFUNC Test_FltMgrReg; 16 KMT_TESTFUNC Test_HidPDescription; 17 KMT_TESTFUNC Test_IoCreateFile; 18 KMT_TESTFUNC Test_IoDeviceObject; 19 KMT_TESTFUNC Test_IoReadWrite; 20 KMT_TESTFUNC Test_MmMapLockedPagesSpecifyCache; 21 KMT_TESTFUNC Test_NtCreateSection; 22 KMT_TESTFUNC Test_PoIrp; 23 KMT_TESTFUNC Test_RtlAvlTree; 24 KMT_TESTFUNC Test_RtlException; 25 KMT_TESTFUNC Test_RtlIntSafe; 26 KMT_TESTFUNC Test_RtlMemory; 27 KMT_TESTFUNC Test_RtlRegistry; 28 KMT_TESTFUNC Test_RtlSplayTree; 29 KMT_TESTFUNC Test_RtlStack; 30 KMT_TESTFUNC Test_RtlUnicodeString; 31 KMT_TESTFUNC Test_TcpIpIoctl; 32 KMT_TESTFUNC Test_TcpIpTdi; 33 KMT_TESTFUNC Test_TcpIpConnect; 34 35 /* tests with a leading '-' will not be listed */ 36 const KMT_TEST TestList[] = 37 { 38 { "CcCopyRead", Test_CcCopyRead }, 39 { "CcMapData", Test_CcMapData }, 40 { "-Example", Test_Example }, 41 { "FileAttributes", Test_FileAttributes }, 42 { "FindFile", Test_FindFile }, 43 { "FltMgrLoad", Test_FltMgrLoad }, 44 { "FltMgrReg", Test_FltMgrReg }, 45 { "HidPDescription", Test_HidPDescription }, 46 { "IoCreateFile", Test_IoCreateFile }, 47 { "IoDeviceObject", Test_IoDeviceObject }, 48 { "IoReadWrite", Test_IoReadWrite }, 49 { "MmMapLockedPagesSpecifyCache", Test_MmMapLockedPagesSpecifyCache }, 50 { "NtCreateSection", Test_NtCreateSection }, 51 { "PoIrp", Test_PoIrp }, 52 { "RtlAvlTree", Test_RtlAvlTree }, 53 { "RtlException", Test_RtlException }, 54 { "RtlIntSafe", Test_RtlIntSafe }, 55 { "RtlMemory", Test_RtlMemory }, 56 { "RtlRegistry", Test_RtlRegistry }, 57 { "RtlSplayTree", Test_RtlSplayTree }, 58 { "RtlStack", Test_RtlStack }, 59 { "RtlUnicodeString", Test_RtlUnicodeString }, 60 { "TcpIpTdi", Test_TcpIpTdi }, 61 { "TcpIpConnect", Test_TcpIpConnect }, 62 { NULL, NULL }, 63 }; 64