[USP10_WINETEST] Sync with Wine Staging 2.9. CORE-13362
[reactos.git] / rostests / kmtests / kmtest / testlist.c
index c12fa11..4d8ba68 100644 (file)
@@ -7,29 +7,48 @@
 
 #include <kmt_test.h>
 
+KMT_TESTFUNC Test_CcCopyRead;
 KMT_TESTFUNC Test_Example;
 KMT_TESTFUNC Test_FindFile;
+KMT_TESTFUNC Test_IoCreateFile;
 KMT_TESTFUNC Test_IoDeviceObject;
+KMT_TESTFUNC Test_IoReadWrite;
+KMT_TESTFUNC Test_MmMapLockedPagesSpecifyCache;
+KMT_TESTFUNC Test_NtCreateSection;
+KMT_TESTFUNC Test_PoIrp;
 KMT_TESTFUNC Test_RtlAvlTree;
 KMT_TESTFUNC Test_RtlException;
 KMT_TESTFUNC Test_RtlIntSafe;
 KMT_TESTFUNC Test_RtlMemory;
 KMT_TESTFUNC Test_RtlRegistry;
 KMT_TESTFUNC Test_RtlSplayTree;
+KMT_TESTFUNC Test_RtlStack;
 KMT_TESTFUNC Test_RtlUnicodeString;
+KMT_TESTFUNC Test_TcpIpIoctl;
+KMT_TESTFUNC Test_TcpIpTdi;
+KMT_TESTFUNC Test_TcpIpConnect;
 
 /* tests with a leading '-' will not be listed */
 const KMT_TEST TestList[] =
 {
-    { "-Example",           Test_Example },
-    { "FindFile",           Test_FindFile },
-    { "IoDeviceObject",     Test_IoDeviceObject },
-    { "RtlAvlTree",         Test_RtlAvlTree },
-    { "RtlException",       Test_RtlException },
-    { "RtlIntSafe",         Test_RtlIntSafe },
-    { "RtlMemory",          Test_RtlMemory },
-    { "RtlRegistry",        Test_RtlRegistry },
-    { "RtlSplayTree",       Test_RtlSplayTree },
-    { "RtlUnicodeString",   Test_RtlUnicodeString },
-    { NULL,                 NULL },
+    { "CcCopyRead",                   Test_CcCopyRead },
+    { "-Example",                     Test_Example },
+    { "FindFile",                     Test_FindFile },
+    { "IoCreateFile",                 Test_IoCreateFile },
+    { "IoDeviceObject",               Test_IoDeviceObject },
+    { "IoReadWrite",                  Test_IoReadWrite },
+    { "MmMapLockedPagesSpecifyCache", Test_MmMapLockedPagesSpecifyCache },
+    { "NtCreateSection",              Test_NtCreateSection },
+    { "PoIrp",                        Test_PoIrp },
+    { "RtlAvlTree",                   Test_RtlAvlTree },
+    { "RtlException",                 Test_RtlException },
+    { "RtlIntSafe",                   Test_RtlIntSafe },
+    { "RtlMemory",                    Test_RtlMemory },
+    { "RtlRegistry",                  Test_RtlRegistry },
+    { "RtlSplayTree",                 Test_RtlSplayTree },
+    { "RtlStack",                     Test_RtlStack },
+    { "RtlUnicodeString",             Test_RtlUnicodeString },
+    { "TcpIpTdi",                     Test_TcpIpTdi },
+    { "TcpIpConnect",                 Test_TcpIpConnect },
+    { NULL,                           NULL },
 };