[ROSAPPS]

Add 4 little tests for RtlDetermineDosPathNameType 

svn path=/trunk/; revision=59179
This commit is contained in:
Hermès Bélusca-Maïto 2013-06-05 23:24:04 +00:00
parent 73f6b44f85
commit 450ab7055a

View file

@ -146,6 +146,10 @@ START_TEST(RtlDetermineDosPathNameType)
{ L"\\\\", RtlPathTypeUncAbsolute },
{ L"\\\\\\", RtlPathTypeUncAbsolute },
{ L"\\\\;", RtlPathTypeUncAbsolute },
{ L"\\\\f\\b\\", RtlPathTypeUncAbsolute },
{ L"\\\\f\\b", RtlPathTypeUncAbsolute },
{ L"\\\\f\\", RtlPathTypeUncAbsolute },
{ L"\\\\f", RtlPathTypeUncAbsolute },
{ L"\\??\\", RtlPathTypeRooted },
{ L"\\??\\UNC", RtlPathTypeRooted },
{ L"\\??\\UNC\\", RtlPathTypeRooted },