mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-14 15:52:47 -05:00
tst: test case insensitivity
sys: FspFileNameIsValid: $DATA is case insensitive
This commit is contained in:
@ -13,8 +13,14 @@ void *memfs_start_ex(ULONG Flags, ULONG FileInfoTimeout)
|
||||
MEMFS *Memfs;
|
||||
NTSTATUS Result;
|
||||
|
||||
Result = MemfsCreate(Flags, FileInfoTimeout, 1024, 1024 * 1024,
|
||||
MemfsNet == Flags ? L"\\memfs\\share" : 0, 0, &Memfs);
|
||||
Result = MemfsCreate(
|
||||
(OptCaseInsensitive ? MemfsCaseInsensitive : 0) | Flags,
|
||||
FileInfoTimeout,
|
||||
1024,
|
||||
1024 * 1024,
|
||||
MemfsNet == Flags ? L"\\memfs\\share" : 0,
|
||||
0,
|
||||
&Memfs);
|
||||
ASSERT(NT_SUCCESS(Result));
|
||||
ASSERT(0 != Memfs);
|
||||
|
||||
|
Reference in New Issue
Block a user