tst: winfsp-tests: enable slowiio

This commit is contained in:
Bill Zissimopoulos 2017-11-02 15:59:32 -07:00
parent b672312c79
commit 68122b5c68
No known key found for this signature in database
GPG Key ID: 3D4F95D52C7B3EA3

View File

@ -35,11 +35,15 @@ void *memfs_start_ex(ULONG Flags, ULONG FileInfoTimeout)
MEMFS *Memfs;
NTSTATUS Result;
Result = MemfsCreate(
Result = MemfsCreateFunnel(
(OptCaseInsensitive ? MemfsCaseInsensitive : 0) | Flags,
FileInfoTimeout,
1024,
1024 * 1024,
50, /*SlowioMaxDelay*/
10, /*SlowioPercentDelay*/
0, /*SlowioRarefyDelay*/
0,
MemfsNet == Flags ? L"\\memfs\\share" : 0,
0,
&Memfs);