mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
9e06c66b38
Extend the IoCreateFile tests with two parts tests. First part properly checks for opening/reparse handling on mount points (and ideally on symlinks, see below). The other part checks for proper handling of the IO_STOP_ON_SYMLINK parameter. Regarding symlink, I'm clearly not convinced that what I did is correct (hence the failure on both W2K3 & ROS). It seems to me that symlink resolution is up to the FSD and not to IO which only handles mount point traversal. If someone (Alex?) can confirm/infirm and give more insight, that's more than welcome. svn path=/trunk/; revision=69322
44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
/*
|
|
* PROJECT: ReactOS kernel-mode tests
|
|
* LICENSE: GPLv2+ - See COPYING in the top level directory
|
|
* PURPOSE: Kernel-Mode Test Suite user-mode test list
|
|
* PROGRAMMER: Thomas Faber <thomas.faber@reactos.org>
|
|
*/
|
|
|
|
#include <kmt_test.h>
|
|
|
|
KMT_TESTFUNC Test_Example;
|
|
KMT_TESTFUNC Test_FindFile;
|
|
KMT_TESTFUNC Test_IoCreateFile;
|
|
KMT_TESTFUNC Test_IoDeviceObject;
|
|
KMT_TESTFUNC Test_IoReadWrite;
|
|
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_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 },
|
|
{ "IoCreateFile", Test_IoCreateFile },
|
|
{ "IoDeviceObject", Test_IoDeviceObject },
|
|
{ "IoReadWrite", Test_IoReadWrite },
|
|
{ "RtlAvlTree", Test_RtlAvlTree },
|
|
{ "RtlException", Test_RtlException },
|
|
{ "RtlIntSafe", Test_RtlIntSafe },
|
|
{ "RtlMemory", Test_RtlMemory },
|
|
{ "RtlRegistry", Test_RtlRegistry },
|
|
{ "RtlSplayTree", Test_RtlSplayTree },
|
|
{ "RtlUnicodeString", Test_RtlUnicodeString },
|
|
{ "TcpIpTdi", Test_TcpIpTdi },
|
|
{ "TcpIpConnect", Test_TcpIpConnect },
|
|
{ NULL, NULL },
|
|
};
|