[ROSAPPS]
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Wed, 5 Jun 2013 23:24:04 +0000 (23:24 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Wed, 5 Jun 2013 23:24:04 +0000 (23:24 +0000)
Add 4 little tests for RtlDetermineDosPathNameType

svn path=/trunk/; revision=59179

rostests/apitests/ntdll/RtlDetermineDosPathNameType.c

index d2e46a3..5a961f8 100644 (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 },