winfsp-tests: create_test: test the tests(!) by trying them against NTFS

This commit is contained in:
Bill Zissimopoulos
2016-01-22 10:00:22 -08:00
parent 56c6b5287f
commit cf8918be28
3 changed files with 33 additions and 1 deletions

View File

@ -20,6 +20,9 @@ static unsigned __stdcall memfs_thread(void *Memfs0)
void *memfs_start(ULONG Flags)
{
if (-1 == Flags)
return 0;
struct memfs_data *data;
MEMFS *Memfs;
HANDLE Thread;
@ -43,6 +46,9 @@ void *memfs_start(ULONG Flags)
void memfs_stop(void *data)
{
if (0 == data)
return;
MEMFS *Memfs = ((struct memfs_data *)data)->Memfs;
HANDLE Thread = ((struct memfs_data *)data)->Thread;
DWORD ExitCode;