From 450ab7055a01e64ebcfac7cc641fc36b82833a4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 5 Jun 2013 23:24:04 +0000 Subject: [PATCH] [ROSAPPS] Add 4 little tests for RtlDetermineDosPathNameType svn path=/trunk/; revision=59179 --- rostests/apitests/ntdll/RtlDetermineDosPathNameType.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rostests/apitests/ntdll/RtlDetermineDosPathNameType.c b/rostests/apitests/ntdll/RtlDetermineDosPathNameType.c index d2e46a34ba0..5a961f8a87f 100644 --- a/rostests/apitests/ntdll/RtlDetermineDosPathNameType.c +++ b/rostests/apitests/ntdll/RtlDetermineDosPathNameType.c @@ -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 },